I have a table and when I pull a clients info up I would like the web address to be able to be clicked to view web site. How would I code this in? Here is some of my code.
$num_rows = mysql_num_rows($query);
print "<b>Here is my Information on you. <br><br>E-Mail me with any changes.</b><P>";
print "<table bgcolor=c0c0c0 width=200 border=3>n";
while ($get_info = mysql_fetch_row($result)){
print "<tr>n";
foreach ($get_info as $field)
print "t<td><font face=arial size=3/>$field</font></td>n";
print "</tr>n";
}
print "</table>n";
Software/Hardware used:
ASKED:
March 4, 2009 3:44 PM