I need to hyperlink a couple of fields in a row to another couple of links in the same row. Each row has a record of a member's name, thier e-mail address and their web address. How do I do this? Of course I want to use the e-mail and web addresses as the hyperlinks. I'll be hyperlinking their name and business, respectively.
Thanks
hyperlink a field with MYSQL
Moderator: General Moderators
- hob_goblin
- Forum Regular
- Posts: 978
- Joined: Sun Apr 28, 2002 9:53 pm
- Contact:
Yes, here's what I have
Code: Select all
while($row = mysql_fetch_array($result))
{
echo "<tr><td> " . $rowї'name'] . "</td><td> " . $rowї'category'] . "</td><td> " . $rowї'business_name'] . "</td><td> " . $rowї'phone'] . "</td></tr>";
}