dessie1981
Programmer
Hi Everyone,
I'm Displaying a list of results in a table from a search in the online store i am writing.
I list the various manufacturers at the top of the table. When the user clicks on the link i would like the page to do a text search on the results listed in the table below , however this does not seen to be working.
while ($manu_row = mysql_fetch_array($manu_result))
{
echo '<a href="#' . $manu_row[0] . '"> ' . $manu_row[0] . ',</a>';
}
The abouve code does not work, can anyone see anything wrong??
Regards
Dessie
I'm Displaying a list of results in a table from a search in the online store i am writing.
I list the various manufacturers at the top of the table. When the user clicks on the link i would like the page to do a text search on the results listed in the table below , however this does not seen to be working.
while ($manu_row = mysql_fetch_array($manu_result))
{
echo '<a href="#' . $manu_row[0] . '"> ' . $manu_row[0] . ',</a>';
}
The abouve code does not work, can anyone see anything wrong??
Regards
Dessie