What I would like to achieve is a product menu that when clicked takes the user to a generic page that then displays the data about the product clicked.
So the code would look something like this (in human speak)
Get productID, product_Name from product_table, order by product_Name, Display Product_Name only
On click navigate to generic page and pass productID to generic page
On generic page load get all from product_Table where productID = ProductID
Display Product
Keep the product menu available.
(There are only about 10 products so hence no categories then product)
Firstly is this possible, secondly anyone know of a good tutorial. Also whats a good book to buy to start me off in PHP
Cheers all