Forum Moderators: open
I have a webpage which shows a list of products pulled from a table on an sql db.
What I need to be able to do is click on each product and bring up info about each product retrieved from the sql db.
eg. Prod1, Prod2, Prod3 is the list on my page
When I click on Prod1 I want it to go to a new page and show me info about that product. This info is already on the sql db.
Is a href command I have to use?
Any help would be appreciated
Thanks
What code are you using to display the product list? You should be able to use that as a guide to accomplish this.
this pages displays 3 links, prod1, prod2, prod3
when i click on each link they open newtestjen.php and i have code in that page saying
$prodid = $_GET["ProdType"];
what i need is code to say if prod1 is clicked on then show me the username for prod1 for example and the same for prod2 and prod3
does that make sense?