I am working on a product inventory website in which i want to show a list of a certain type of product and then provide a link to more detailed information regarding a specific product.
However, I can’t get the individual link to work, it keeps shutting down the whole page.
[php]<?php
$query = mysql_query(“SELECT * FROM presses WHERE type
= ‘upsetter’”);
echo "<table border='1' id='presses' class='presses'>
<tr>
</tr>";
while($row = mysql_fetch_array($query))
{
echo “
echo “
echo "
echo "
echo “
}
echo “”;
mysql_close($connection);
?>[/php]
the bold is the line I am having issues with. I have tried making it its own cell, its own paragraph. Nothing seems to work. Any help would be appreciated.
Thanks!