真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用php怎么編寫一個購物車功能-創(chuàng)新互聯(lián)

使用php怎么編寫一個購物車功能?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

創(chuàng)新互聯(lián)主要從事成都網(wǎng)站設(shè)計、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)峨眉山,十多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575

 代碼如下:


//
// 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 "已經(jīng)注冊";
 
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/>        已經(jīng)添加 <?php echo $curr_product[name]; ?> 到您的購物籃<br/>    <?php } else {  ?><br/>        添加 <?php echo $curr_product[name]; ?> 到您的購物籃<br/>    <?php } ?><br/>   



   


        添加至購物籃成功


 
    返回 商品列表頁面.

   

添加 到您的購物籃


 
   

    商品名稱:
   

    商品說明:
   

    商品單價: RMB
   

    商品數(shù)量:
   
   
   
   



查看購物車的商品,代碼如下:


復制代碼 代碼如下:

//
// cart.php:
//
session_start();
 
require 'lib.inc.php';
//判斷購物籃會話變量cart是否注冊,不注冊則注冊cart變量
if (session_is_registered('cart')) {
    session_register('cart');
}
 
// 如果購物籃沒有初始化,則初始化購物籃
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(); //載入物品列表
?>


    演示會話跟蹤的購物籃程序

 

 

歡迎進入網(wǎng)上商店


 
if ($_SESSION[cart][num_items]) {  // If there is something to show
?>

當前在購物籃里的物品






   
   
   
   
   

  
    // Loop through the products
    foreach ($_SESSION[cart][products] as $i => $product) {
        $product_id = $product[0];
        $quantity   = $product[1];
 
        $total += $quantity *
                  (double)$master_products_list[$product_id][price];
?>

   
   
   
   
   

    }
?>

   
   
 


        商品名稱
   

        商品說明
   

        單價
   

        數(shù)量
   
 
        
   

       
   

       
   

       
   

       

       
                        value="">
   

       
       
   

       合計:
   

        RMB:
   
 





}
?>
 

商店待出售的商品





    我們提供以下商品待售:





   
   
   
   

    // Show all of the products
    foreach ($master_products_list as $product_id => $item) {
?>

   
   
   
   

    }
 
?>

        商品名稱
   

        商品說明
   

        單價
   
 
        
   

       
   

       
   

        $
   

       
            添加至購物籃
       

   

修改購物車的數(shù)量,代碼如下:


復制代碼 代碼如下:

//
// 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 the
// 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/>        數(shù)量修改<br/>   


   

將數(shù)量: 更改為
        


    返回 商品列表頁面.

功能頁面,用戶把購物車里面的內(nèi)容保存到txt數(shù)據(jù)庫,代碼如下:


復制代碼 代碼如下:

//物品數(shù)組
$master_products_list = array();
 
 
//載入物品數(shù)據(jù)函數(shù)
function LoadProducts() {
    global $master_products_list;
    $filename = 'products.txt';
 
    $fp = @fopen($filename, "r")
        or die("打開 $filename 文件失敗");
    @flock($fp, 1)
        or die("鎖定 $filename 文件失敗");
 
    //讀取文件內(nèi)容
    while ($line = fgets($fp, 1024)) {
        list($id, $name, $desc, $price) = explode('|', $line); //讀取每行數(shù)據(jù),數(shù)據(jù)以| 格開
        $id = trim($id); //去掉首尾特殊符號
        $master_products_list[$id] = array("name" =>  $name, //名稱
                                           "desc" =>  $desc, //說明
                                           "price" => $price); //單價
    }
 
    @fclose($fp)  //關(guān)閉文件
        or die("關(guān)閉 $filename 文件失敗");
}
?>


關(guān)于使用php怎么編寫一個購物車功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。


標題名稱:使用php怎么編寫一個購物車功能-創(chuàng)新互聯(lián)
URL分享:http://weahome.cn/article/dhhpsd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部