php實現產品加入購物車功能的圖文代碼詳解

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了php實現產品加入購物車功能,具有一定的參考價值,感興趣的小夥伴們可以參考一下

今天在練習購物車以及提交訂單,寫的有點頭暈,順便也整理一下,這個購物車相對來說比較簡單,用於短暫儲存,並沒有儲存到資料庫,購物車對於愛網購的人來說簡直是熟悉的不能再熟悉了,在寫購物車之前,我們首先要構思一下,我們需要先從資料庫中調出一張表格,這裡我用的是fruit表,其次是登入表,我用的是login表,用來調使用者名稱和密碼的,所有的都準備好之後就要考慮放入購物車是會有三種情況的:

第一種情況:購物車裡面什麼都沒有

第二種情況:購物車裡面已經有此產品了,再次加入 這種情況下考慮到的是 數量要+1

第三種情況:購物車裡面有產品了,但是沒有此產品

是用到的資料庫表格:

下面是登入頁面的代碼:


<body><form action="chuli.php" method="post"> <p style="margin-left: 500px; margin-top: 200px;  height: 250px; width: 250px; border: 1px dashed black">  <p style="margin-left: 100px; "><h3>登入</h3></p>  <p style="margin-top: 20px">使用者名稱:<input type="text" name="uid"/></p><br/>  <p>密 碼:<input type="password" name="pwd"/></p><br/>  <p style="margin-left: 180px"><input type="submit" value="登入"/></p> </p></form></body>

登入頁面寫好之後,需要進入處理頁面,從資料庫中調出使用者名稱和密碼:


<?phpsession_start(); //開啟session 必須要寫到第一行header("Content-type:text/html;charset=utf-8");$uid=$_POST["uid"]; //從登入頁面擷取到使用者名稱和密碼$pwd=$_POST["pwd"];include("DADB.class.php");$db=new DADB();$sql="select password from login where username='{$uid}'";$arr=$db->Query($sql);if($arr[0][0]==$pwd && !empty($pwd)) //判斷所填寫的密碼和取到的密碼是一樣的,而且密碼不可為空{ $_SESSION["uid"]=$uid; header("location:main.php");}else{ echo"登入失敗";}

登入頁面:

下面要進入首頁面了,從資料庫中把所有的水果資訊調出來,然後我們再來實現加入購物車這一項功能。


<h2>大蘋果購物網</h2><?phpsession_start();include("DADB.class.php");$db=new DADB();?><table border="1" width="100%" cellpadding="0" cellspacing="0"> <tr>  <td>代號</td>  <td>水果名稱</td>  <td>水果價格</td>  <td>原產地</td>  <td>貨架</td>  <td>庫存量</td>  <td></td> </tr> <?php $uid=$_SESSION["uid"]; $sql="select * from fruit"; $arr=$db->Query($sql); foreach($arr as $v) {  echo"<tr>  <td>{$v[0]}</td> // 從資料庫調出我們所需要的內容  <td>{$v[1]}</td>  <td>{$v[2]}</td>  <td>{$v[3]}</td>  <td>{$v[4]}</td>  <td>{$v[5]}</td>  <td><a href='add.php?ids={$v[0]}'>購買</a></td> //這裡的購買相當於添加購物車的功能  </tr>"; } ?> <?php //這裡顯示的是 購物車有多少產品,和產品的總價格 $ann=array(); if(!empty($_SESSION["gwc"])) {  $ann=$_SESSION["gwc"]; } $zhonglei = count($ann);  $sum=0; foreach($ann as $k) {  $sql1="select price from fruit where ids='{$v[0]}'";  $danjia=$db->Query($sql1);  foreach($danjia as $n)  {   $sum=$sum + $n[0]*$k[1];  } } echo"購物車有<mark>{$zhonglei}</mark>種商品,總價格為<mark>{$sum}</mark>元"; ?></table><p><a href="gouwuche.php" rel="external nofollow" rel="external nofollow" >查看購物車</a><a href="main.php" rel="external nofollow" rel="external nofollow" >瀏覽商品</a><a href="zhanghu.php" rel="external nofollow" rel="external nofollow" >查看賬戶</a> </p></body>

首頁面:

最重要的就是添加購物車頁面了

<?phpsession_start();$ids = $_GET["ids"];if(empty($_SESSION["gwc"])){ //1.購物車是空的,第一次點擊添加購物車 $arr = array(  array($ids,1) ); $_SESSION["gwc"]=$arr;}else{ //不是第一次點擊 //判斷購物車中是否存在該商品 $arr = $_SESSION["gwc"]; //先存一下 $chuxian = false; foreach($arr as $v) {  if($v[0]==$ids)  {   $chuxian = true;  } } if($chuxian) {  //3.如果購物車中有該商品  for($i=0;$i<count($arr);$i++)  {   if($arr[$i][0]==$ids)   {    $arr[$i][1]+=1;   }  }  $_SESSION["gwc"] = $arr; } else {  //2.如果購物車中沒有該商品  $asg = array($ids,1);  $arr[] = $asg;  $_SESSION["gwc"] = $arr; }}header("location:gouwuche.php");

這樣就可以顯示到購物車的頁面了,購物車的頁面代碼如下:

<h2>購物車中有以下商品:</h2><table cellpadding="0" cellspacing="0" border="1" width="100%"> <tr>  <td>商品名稱</td>  <td>商品單價</td>  <td>購買數量</td>  <td></td> </tr> <?php session_start(); //$uid=$_SESSION["uid"]; $arr=array(); if(!empty($_SESSION["gwc"])) {  $arr=$_SESSION["gwc"]; } include("DADB.class.php"); $db=new DADB(); foreach($arr as $v) {  global $db;  $sql="select * from fruit where ids='{$v[0]}'";  $att=$db -> Query($sql,1);  foreach($att as $n)  {   echo"<tr>  <td>{$n[1]}</td>  <td>{$n[2]}</td>  <td>{$v[1]}</td>  <td><a href='shanchu.php?ids={$v[0]}'>刪除</a></td> </tr>";} } ?></table><p><a href="gouwuche.php" rel="external nofollow" rel="external nofollow" >查看購物車</a> <a href="main.php" rel="external nofollow" rel="external nofollow" >瀏覽商品</a> <a href="zhanghu.php" rel="external nofollow" rel="external nofollow" >查看賬戶</a> </p> 14 15 </body>

這樣進入購物車頁面顯示:

這隻是比較簡單的加入購物車,但是中間還有很多環節沒有完善好,比如說加入購物車後,資料庫中的產品數量減少、購物車中產品的刪除等操作還沒有做,後續補上。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.