Shopping Cart w/ PHP and MySQL

Language

This project will show you how to build a shopping cart using PHP, MySQL, HTML and css. It contains product list and the cart list.

Like any other shopping cart, everytime you click the Add To Cart, the item will go to the cart list. If the product is already on the list, only the quantity will be added to the existing product.

The user can also edit the quantity on the Cart Page by clicking the Go To Cart link. If the user wants to remove the product into the list, they will have to set the quantity to 0(zero) and click update cart button.

Hope you can learn from this project.

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byrinom (not verified)on Fri, 07/11/2014 - 12:41

No SQL file attached. Please attach the sql file.
Submitted byCursakandine (not verified)on Thu, 02/12/2015 - 22:09

From analysising the code, the SQL to create the table should be CREATE TABLE IF NOT EXISTS `products` ( `id` int(11) NOT NULL, `name` varchar(64) NOT NULL, `description` text NOT NULL, `price` varchar(64) NOT NULL )

Add new comment