Correct querry
Posted: Fri Aug 16, 2002 10:19 am
im sure this sounds dumb, I am trying to pull an email off a DB that just reads email, and not the address, but as an actual email hyperlink, i have tried several different methodes, to some degree of sucess, not not quite.
heres what i have so far
doesnt seem to work
heres what i have so far
Code: Select all
if ($row = mysql_fetch_array($result)) {
do {
print "<table>";
print "<td class="cell"> $rowї"name"]\n";
print (" ");
print "<a href="mailto:" .'$email'. "">Click here!</a>";
print (" ");
print "<td class="cell"> $rowї"hub"]\n";
print (" ");
print ("<p>");
} while($row = mysql_fetch_array($result));
} else {print "Sorry, no records were found!";}
include("footer.php");
?>