|
Posted by Mαrio Gamito on 10/04/02 11:11
Hi,
I want this code to display peoples' names within an hyperlink.
I'm tired of trying different ways, read all about it in PHP's manual,
but i can't get it there.
You can visit http://www.dte.ua.pt/cv
In the rightmost column it is suposed to apear two name below "Links",
but... it doen't, becuase i can't straight the escaping :(
Any help would be apreciated.
The code follows my signature.
Warm Regards,
MΓ‘rio Gamito
--
// select names to display in the right column
$recordSet = &$conn->Execute('SELECT name FROM users');
while (!$recordSet->EOF) {
print ('<a href=\'http://www.dte.ua.pt/cv/email=?' .
$recordSet->fields[0] . '\'' . '<br />');
$recordSet->MoveNext();
}
[Back to original message]
|