Learning PHP 16 – Add to a Cart
Learn how to add items to a cart using PHP and MySQL.
Files – http://nagoly.com/youtube/cart_add.zip
MySQL
CREATE TABLE film_in_cart (
film_in_cart_id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT,
film_id SMALLINT(5) NOT NULL,
customer_id SMALLINT(5) NOT NULL,
purchase_date TIMESTAMP NULL DEFAULT NULL
);
source