bccamp
Technical User
- Jan 20, 2005
- 69
Sorry, but I am new to this. I've found all sorts of info on forms and check boxes, but nothing that answers my question.
I have a list of Hyperlinks displayed from my database:
while ($row = mysql_fetch_array ($result)) {
if ($row['COUNT(*)']>=2 {
print"<a href=\"page.php\">$row[CATEGORY]<br></a>";
}}
each [CATEGORY] has multiple listings in the database.
I want to use the link the user clicks to reload the current page "page.php" with the link data so I can use it to display those values in [CATEGORY].
I have a list of Hyperlinks displayed from my database:
while ($row = mysql_fetch_array ($result)) {
if ($row['COUNT(*)']>=2 {
print"<a href=\"page.php\">$row[CATEGORY]<br></a>";
}}
each [CATEGORY] has multiple listings in the database.
I want to use the link the user clicks to reload the current page "page.php" with the link data so I can use it to display those values in [CATEGORY].