Example: Webpage1 has: ItemNumber, Descritpion, Lot#
1 Dog A2233
Webpage2 has: ItemNumber, Descripion, Lot#, Customer, Quantity
1 Dog A111 Cust1 2
2 Dog B111 Cust2 5
1 Dog C111 Cust3 4
I would like the user to be able to click on the ItemNumber in Webpage1 and have Webpage2 open and display all of the
same ItemNumbers that the user selected.
In the above example, if the user clicked on ItemNumber 1, it would display 2 results ( ItemNumber1 Dog A111 Cust1 2
itemNumber1 Dog C111 Cust3 4 )
Is there a php code that would do this?
Thank you...
Rick
But the more manual way to do it is to pass the ID number through the URL. So the code on the item number column would look like this:
<a href="yourdetailpage.php?i
That will produce a link that looks like:
yourdetailpage.php?id=1
yourdetailpage.php?id=2
yourdetailpage.php?id=3
etc
On yourdetailpage.php, you create a new recordset via Dreamweaver that filters on the URL Variable "id"