Php shopping cart implementation code (1/2) _ PHP Tutorial

Source: Internet
Author: User
Tags mysql tutorial
Php shopping cart implementation code (12 ). About shopping cart, this is a lot of use in e-commerce, the user selects their own items need to be saved, and finally go to the cashier, this is like our actual life of the supermarket, the shopping cart, this is a lot of e-commerce use, the user selects their own products need to be saved, and finally go to the cashier, this is like our actual life of the supermarket, so now I want to write a simple php shopping cart instance code. For more details, we only need to step by step, and it will be OK if the processing is complete.

Php Tutorial shopping cart implementation code

With regard to shopping cart, this is a lot of e-commerce use, the user selects their own products need to be saved, and finally go to the cashier, this is like our real-life supermarket, so now I want to write a simple php shopping cart instance code. For more details, we only need to step by step, and it will be OK if the processing is complete.

Some shopping cart will use PHP files
Main. php display product
Additem. php add items to the shopping cart
Cearcart. php delete the item in the shopping cart
Shoppingcart. php operation class

User database tutorials include:

Inventory
Create table inventory (
Product tinytext not null,
Quantity tinytext not null,
Id int (4) default '0' not null auto_increment,
Description tinytext not null,
Price float (10, 2) default '0. 00' not null,
Category char (1) default ''not null,
Key id (id ),
Primary key (id ),
Key price (price)
);
Insert into inventory values ('Hard disk ', '5', '1', '80 GB', '123', '1 ');
Insert into inventory values ('CPU ', '12', '2', 'p4-2.4g', '123', '1 ');
Insert into inventory values ('DVD-rom ', '7', '3', '12x', '123', '1 ');
Insert into inventory values ('motherboard www.bkjia.com ', '3', '4', 'ASUS', '123', '2 ');
Insert into inventory values ('dashboard ', '6', '5', '64m', '123', '1 ');
Insert into inventory values ('recorders ', '4', '6', '52w', '123', '1 ');

Shopping
Create table shopping (
Session tinytext not null,
Product tinytext not null,
Quantity tinytext not null,
Card tinytext not null,
Id int (4) default '0' not null auto_increment,
Key id (id ),
Primary key (id)
);
Shopper

Create database shopper;
Use shopper;
Create table shopping (
Session tinytext not null,
Product tinytext not null,
Quantity tinytext not null,
Card tinytext not null,
Id int (4) default '0' not null auto_increment,
Key id (id ),
Primary key (id)
);
Create table inventory (
Product tinytext not null,
Quantity tinytext not null,
Id int (4) default '0' not null auto_increment,
Description tinytext not null,
Price float (10, 2) default '0. 00' not null,
Category char (1) default ''not null,
Key id (id ),
Primary key (id ),
Key price (price)
);
Insert into inventory values ('Hard disk ', '5', '1', '80 GB', '123', '1 ');
Insert into inventory values ('CPU ', '12', '2', 'p4-2.4g', '123', '1 ');
Insert into inventory values ('DVD-rom ', '7', '3', '12x', '123', '1 ');
Insert into inventory values ('motherboard php100.com ', '3', '4', 'ASUS', '123', '2 ');
Insert into inventory values ('dashboard ', '6', '5', '64m', '123', '1 ');
Insert into inventory values ('recorders ', '4', '6', '52w', '123', '1 ');

*/

// Main. php displays all items in the shopping cart

Include ("shoppingcart. php ");
$ Cart = new cart;
$ Table = "shopping ";

/* Query and display information in all inventory Tables */
$ Query = "select * from inventory ";
$ Invresult = mysql tutorial _ query ($ query );
If (! ($ Invresult )){
Echo "query failed
";
Exit;
}
Echo "the following products are available for subscription ";
Echo"












";Echo" ";Echo" ";While ($ row_inventory = mysql_fetch_object ($ invresult )){Echo" ";Echo" ";Echo" ";Echo" ";Echo" ";Echo" ";}Echo"
Product No. Product Name Unit PriceRemaining quantity Product Description Add to shopping cart
". $ Row_inventory-> id ."". $ Row_inventory-> product ."". $ Row_inventory-> price ."". $ Row_inventory-> quantity ."". $ Row_inventory-> description ."Product. "'>
";
Echo"
Quantity of products in the shopping cart: ". $ cart-> quant_items ($ table, $ session );
Echo"

Clear shopping cart ";

1 2

...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.