I have a php table with details of different products and in the table there is a column called 'Test Product'. I would like to be able to click on 'Test Product' and that then bring up a new page on that product. Im not sure on how to go about this.
Here is my table code:
Any help would be great
Thanks
Here is my table code:
Code:
echo "<table border='2' cellspacing = 3 cellpadding = '3'><tr><th>Circuit</th><th>Product</th><th>Silo</th><th>Frequency</th><th>Test</th></tr>";
while($row = mysql_fetch_array($result)){
//Display the results in different cells
echo "<tr><td>" . $row['circuit'] . "</td><td>" . $row['product'] . "</td><td>" . $row['silo'] . "</td><td>" .$row['frequency']."</td><td>'<td>Test Product</td></tr>";
Any help would be great
Thanks