Hi, in my results page I have set up a table to receive data. How do I get one of the fields apperar as a hyperlink? These are the field names:
MLA_NO, NAME, STREET, CITY, STATE, ZIP, PHONE, FAX, IP_ADDR
I would like IP_ADDR to appear as a hyperlink
thanks
Here is the code just below the table setup:
while ($get_info = mysql_fetch_row($result)){
print "<tr>\n";
foreach ($get_info as $field)
print "\t<td nowrap bgcolor=#669966><font color=#FFFFFF> <font face=arial size=1/>$field</font></td>\n";
print "</tr>\n";
}
print "</table>\n";