http://www.daniweb.com – Helloo Im new in Databases. I want to create a simple shopping cart i have a table called product CREATE TABLE `products` ( `id` int(11) NOT NULL AUTO_INCREMENT, `category` varchar(150) NOT NULL, `name` varchar(100) NOT NULL, `author` varchar(100) NOT NULL, `details` varchar(10000) NOT NULL, `price` int(11) NOT NULL, `imgpath` varchar(500) NOT NULL, `dateadded` date NOT NULL, `stock` int(11) NOT NULL, PRIMARY KEY (`id`) ) what i want is when i click the add to cart button the product must add to a cart i don't have a idea how to do this (General)