Php shopping cart implementation method, php shopping cart implementation _ PHP Tutorial

Source: Internet
Author: User
Php shopping cart implementation method, php shopping cart implementation. Php shopping cart implementation method, php shopping cart implementation this article describes the php shopping cart implementation method. Share it with you for your reference. The specific analysis is as follows: Here we provide you with a simple php shopping cart implementation method, php shopping cart implementation

This article describes how to implement the php shopping cart. Share it with you for your reference. The specific analysis is as follows:

Here we provide you with a simple php shopping cart code, from adding shopping products and purchasing, in the mall development, this function is indispensable, we do not need a database, a txt file is used to operate the user's shopping content.

Add the product to the shopping cart. the code is as follows:

The code is as follows:

<? Php
//
// Add_item.php:
// Add an item to the shopping cart.
//
Session_start ();
If (session_is_registered ('cart ')){
Session_register ('cart ');
}

Require 'Lib. inc. php'; // LoadProducts ()

LoadProducts (); // Load products in $ master_products_list

// Make $ curr_product global
$ Curr_product = array ();

// Loop through all the products and pull up the product
// That we are interested in

Foreach ($ master_products_list as $ prod_id => $ product ){
If (trim ($ prod_id) = trim ($ _ GET [id]) {
$ Curr_product = $ product;
}
}

// Register our session
// Session_register ('cart ');
// If (session_is_registered ('cart') echo "registered ";

If ($ _ POST [ordered]) {// If they have chosen the product

Array_push ($ _ SESSION [cart] [products], array (trim ($ _ POST [id]), $ _ POST [quantity]);
$ _ SESSION [cart] [num_items] + =$ _ POST [quantity];
}
?>


<Br/> <? Php if ($ _ POST [ordered]) {?> <Br/> added <? Php echo $ curr_product [name];?> To your shopping basket <br/> <? Php} else {?> <Br/> add <? Php echo $ curr_product [name];?> To your shopping basket <br/> <? Php }?> <Br/>


<? Php if ($ _ POST [ordered]) {?>
<? Php echo $ curr_product [name];?>
Added to shopping basket

Return to the product list page.
<? Php} else {?>
Add <? Php echo $ curr_product [name];?> To your shopping basket


<? Php }?>

View the items in the shopping cart. the code is as follows:

The code is as follows:

<? Php
//
// Cart. php:
//
Session_start ();

Require 'Lib. inc. php ';
// Determine whether cart is registered as the shopping basket session variable. if cart is not registered, the cart variable is registered.
If (session_is_registered ('cart ')){
Session_register ('cart ');
}

// If the shopping basket is not initialized, the shopping basket is initialized.
If (! Isset ($ _ SESSION [cart] [num_items]) {
$ _ SESSION [cart] = array ("num_items" => 0,
"Products" => array ());
}
// From site_lib.inc, Loads the $ master_products_list array
LoadProducts (); // load the item list
?>


Demonstrate the basket program for session tracking




Welcome to the online store

<? Php
If ($ _ SESSION [cart] [num_items]) {// If there is something to show
?>
Items in the current shopping basket


































<? Php // Loop through the productsForeach ($ _ SESSION [cart] [products] as $ I =>$ product ){$ Product_id = $ product [0];$ Quantity = $ product [1]; $ Total + = $ quantity *(Double) $ master_products_list [$ product_id] [price];?> <? Php}?>

Product Name

Product Description

Unit Price

Quantity



<? Php echo $ master_products_list [$ product_id] [name];?>

<? Php echo $ master_products_list [$ product_id] [desc];?>

<? Php echo $ master_products_list [$ product_id] [price];?>



Total:

RMB: <? Php echo $ total;?>





<? Php
}
?>

Items to be sold in the store



We provide the following products for sale:
























<? Php// Show all of the productsForeach ($ master_products_list as $ product_id => $ item ){?> <? Php} ?>

Product Name

Product Description

Unit Price



<? Php echo $ item [name];?>

<? Php echo $ item [desc];?>

$ <? Php echo $ item [price];?>

">
Add to shopping basket

Modify the number of cart in the following code:

The code is as follows:

<? Php
//
// Change_quant.php:
// Change the quantity of an item in the shopping cart.
//
Session_start ();
If (session_is_registered ('cart ')){
Session_register ('cart ');
}

// Typecast to int, making sure we access
// Right element below
$ I = (int) $ _ POST [id];

// Save the old number of products for display
// And arithmetic
$ Old_num = $ _ SESSION [cart] [products] [$ I] [1];

If ($ _ POST [quantity]) {
$ _ SESSION [cart] [products] [$ I] [1] =$ _ POST [quantity]; // change the quantity
} Else {
Unset ($ _ SESSION [cart] [products] [$ I]); // Send the product into oblivion
}

// Update the number of items
$ _ SESSION [cart] [num_items] = ($ old_num >$ _ POST [quantity])?
$ _ SESSION [cart] [num_items]-($ old_num-$ _ POST [quantity]):
$ _ SESSION [cart] [num_items] + ($ _ POST [quantity]-$ old_num );
?>



<Br/> quantity modification <br/>


Count: <? Php echo $ old_num;?> Change
<? Php echo $ _ POST [quantity];?>
Return to the product list page.

Function page, the user saves the content in the shopping cart to the txt database, the code is as follows:

The code is as follows:

<? Php
// Item array
$ Master_products_list = array ();


// Function for loading item data
Function LoadProducts (){
Global $ master_products_list;
$ Filename = 'products.txt ';

$ Fp = @ fopen ($ filename, "r ")
Or die ("opening the $ filename File failed ");
@ Flock ($ fp, 1)
Or die ("failed to lock the $ filename File ");

// Read the file content
While ($ line = fgets ($ fp, 1024 )){
List ($ id, $ name, $ desc, $ price) = explode ('|', $ line); // read data in each row, and use |
$ Id = trim ($ id); // remove the first and last special characters
$ Master_products_list [$ id] = array ("name" => $ name, // name
"Desc" => $ desc, // description
"Price" => $ price); // unit price
}

@ Fclose ($ fp) // close the file
Or die ("failed to close the $ filename File ");
}
?>


It is very simple. we only use four files to implement the shopping cart function with php. well, this is just a simple php shopping cart code that needs to be considered more complicated and better.

I hope this article will help you with php programming.

The example in this article describes the php shopping cart implementation method. Share it with you for your reference. The specific analysis is as follows: Here we provide you with a simple...

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.