溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用php實(shí)現(xiàn)購物車功能的示例分析

發(fā)布時(shí)間:2021-06-18 15:27:49 來源:億速云 閱讀:143 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下使用php實(shí)現(xiàn)購物車功能的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

首先是幾個(gè)簡(jiǎn)單的登錄頁面

<body>
<form action="chuli.php" method="post">
 <div style="margin-left: 500px; margin-top: 200px;
  height: 250px; width: 250px; border: 1px dashed black">
  <div ><h4>登錄</h4></div>
  <div >用戶名:<input type="text" name="uid"/></div><br/>
  <div>密 碼:<input type="password" name="pwd"/></div><br/>
  <div ><input type="submit" value="登錄"/></div>
 </div>
</form>
</body>

登錄頁面寫好之后,需要進(jìn)入處理頁面,從數(shù)據(jù)庫中調(diào)出用戶名和密碼:

<?php
session_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"登錄失敗";
}

這個(gè)顯示的是登錄頁面

使用php實(shí)現(xiàn)購物車功能的示例分析

下面要進(jìn)入主頁面了,從數(shù)據(jù)庫中把所有的水果信息調(diào)出來,然后我們?cè)賮韺?shí)現(xiàn)加入購物車這一項(xiàng)功能

<h3>大蘋果購物網(wǎng)</h3>
<?php
session_start();
include("DADB.class.php");
$db=new DADB();
?>
<table border="1" width="100%" cellpadding="0" cellspacing="0">
 <tr>
  <td>代號(hào)</td>
  <td>水果名稱</td>
  <td>水果價(jià)格</td>
  <td>原產(chǎn)地</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> // 從數(shù)據(jù)庫調(diào)出我們所需要的內(nèi)容
  <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> //這里的購買相當(dāng)于添加購物車的功能
 </tr>";
 }
 ?>
 <?php
 //這里顯示的是 購物車有多少產(chǎn)品,和產(chǎn)品的總價(jià)格
 $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>種商品,總價(jià)格為<mark>{$sum}</mark>元";
 ?>
</table>
<div>
<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> </div>
</body>

主頁面顯示圖

使用php實(shí)現(xiàn)購物車功能的示例分析

接下來是添加購物車頁面

<?php
session_start();
$ids = $_GET["ids"];
if(empty($_SESSION["gwc"]))
{
  //1.購物車是空的,第一次點(diǎn)擊添加購物車
  $arr = array(
    array($ids,1)
  );
  $_SESSION["gwc"]=$arr;
}
else
{
  //不是第一次點(diǎn)擊
  //判斷購物車中是否存在該商品
  $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");

然后先是購物車主界面,如下

<h3>購物車中有以下商品:</h3>
<table cellpadding="0" cellspacing="0" border="1" width="100%">
  <tr>
    <td>商品名稱</td>
    <td>商品單價(jià)</td>
    <td>購買數(shù)量</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?sy={$k}'>刪除</a></td>
</tr>";} } ?> </table> <div> <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> </div> 14 15 </body>

使用php實(shí)現(xiàn)購物車功能的示例分析

緊接著我們就到了刪除頁面,當(dāng)購物車只有一件商品和大于一件商品時(shí)做處理

<?php
session_start();
$sy = $_GET["sy"]; 
//根據(jù)索引找到該數(shù)據(jù)
$arr = $_SESSION["gwc"];
$arr[$sy]; //要?jiǎng)h除的數(shù)據(jù)
//如果數(shù)量不為1,數(shù)量減1
if($arr[$sy][1]>1)
{
  $arr[$sy][1] = $arr[$sy][1]-1;
}
else //如果數(shù)量為1,移除
{
  unset($arr[$sy]);
}
$_SESSION["gwc"] = $arr; //最后存一下購物車的內(nèi)容
header("location:gouwuche.php");

至于提交頁面,我們要想到余額,庫存等因素,所以比較繁瑣,

不i怕,上代碼。

<?php
  session_start();
header("Content-type:text/html;charset=utf-8"); //防止出現(xiàn)亂碼
$uid=$_SESSION["uid"];
//先查一下賬戶余額
include("DADB.class.php");
$db=new DADB();
$ysql="select account from login where username='{$uid}'";
$yarr=$db->Query($ysql);
$yarr[0][0];//總額
//購物車的總價(jià)格,前面有寫過
$arr=array();
if (!empty($_SESSION["gwc"]))
{
  $arr=$_SESSION["gwc"];
}
$sum=0;
foreach($arr as $v)
{
  $v[1];//購物車中產(chǎn)品的數(shù)量
  $psql="select price from fruit WHERE ids='{$v[0]}'";
  $parr=$db->Query($psql);
  foreach($parr as $k)
  {
   $k[0];//產(chǎn)品的單價(jià)
    $sum+=$k[0]*$v[1];
  }
}
//判斷余額是否滿足購買
if($yarr[0][0]>=$sum)
{//余額滿足,要判斷庫存
  foreach($arr as $v)
  {
    $ksql="select number from fruit where ids='{$v[0]}'";
    $karr=$db->Query($ksql);
    $karr[0][0];//這是庫存
    if($karr[0][0]<$v[1]) //表示庫存不足,這時(shí)要給顧客提示庫存不足
    {
      echo"庫存不足";
      exit;
    }
  }
  //判斷之后需要提交訂單了
  //賬戶扣除余額
  $kcsql="update login set account=account-{$sum} where username='{$uid}'";
  $db->Query($kcsql,0);//這里是修改語句,所以要加上0
  //扣除庫存
  foreach($arr as $v)
  {
    $kcksql="update fruit set number=number-$v[1] where ids='{$v[0]}'";
    $db->Query($kcksql,0);
  }
//所有的工作都做完了,這時(shí)我們就該提交訂單了
// 這里我在數(shù)據(jù)庫中做了兩張表,把提交的訂單添加到表中就可以保存了
//添加訂單
$ddh = date("YmdHis");
$time = date("Y-m-d H:i:s");
$sdd = "insert into orders values('{$ddh}','{$uid}','{$time}')";
$db->Query($sdd,0);
//添加訂單詳情
  foreach($arr as $v)
  {
    $sddxq = "insert into orderdetails values('','{$ddh}','{$v[0]}','{$v[1]}')";
    $db->Query($sddxq,0);
  }
}
else
{
  echo "余額不足";
  exit;
}
?>

使用php實(shí)現(xiàn)購物車功能的示例分析

使用php實(shí)現(xiàn)購物車功能的示例分析

使用php實(shí)現(xiàn)購物車功能的示例分析

使用php實(shí)現(xiàn)購物車功能的示例分析

實(shí)現(xiàn)功能是沒問題的

以上是“使用php實(shí)現(xiàn)購物車功能的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI