I have a database of over 900 products.
What i am hoping to create is a website that pulls the Product information from a database using its Product ID.
The products are displayed according to their sub category:
SELECT `Product_ID`, `Product_picurl`, `Product_Name`, `Product_Description`, `Product_price`, `Product_Category`, `Product_Pdf`, `Product_Cart`, `Product_Features`, `Product_subcat`, `Key` FROM `prod_listing` where `Product_subcat` = 'Absorption Panels'
Once the user Clicks the product, the database should then reteive the data based on its Product ID.
What would i need to change inorder to get the above code to do what i want?
Thanks in advance