Here is part of the code
<table width="95%" BGCOLOR="#ceefbd" BORDERCOLOR="teal" border="1" cellspacing="0" cellpadding="1">
<tr>
<td>Name</td>
<td>Products</td>
<td>Type</td>
<td>Country</td>
<?php
while ($row = mysql_fetch_array($query)) {
echo "<tr><td>",$row['name'],"</td><td>",$row['products'],"</td><td>", $row['type'],"</td><td>",$row['country'],"</td></tr>";
}
?>
</table>
I want the field labeled : name, to be a hyperlink that trigers a php script.