Example explanation of how to implement shopping cart function in PHP

迷茫
Release: 2023-03-06 22:30:01
Original
8333 people have browsed it

The first is a few simple login pages

 

登录

用户名:


密 码:


Copy after login

After the login page is written, you need to enter the processing page and retrieve the user name and password from the database:

Query($sql); if($arr[0][0]==$pwd && !empty($pwd)) //判断所填写的密码和取到的密码是一样的,而且密码不能为空 { $_SESSION["uid"]=$uid; header("location:main.php"); } else { echo"登录失败"; }
Copy after login

This shows the login Page

Now we are going to the main page. We will retrieve all the fruit information from the database, and then we will implement the function of adding to the shopping cart.

大苹果购物网

Query($sql); foreach($arr as $v) { echo" // 从数据库调出我们所需要的内容 //这里的购买相当于添加购物车的功能 "; } ?> Query($sql1); foreach($danjia as $n) { $sum=$sum + $n[0]*$k[1]; } } echo"购物车有{$zhonglei}种商品,总价格为{$sum}元"; ?>
代号 水果名称 水果价格 原产地 货架 库存量
{$v[0]}{$v[1]} {$v[2]} {$v[3]} {$v[4]} {$v[5]} 购买

查看购物车 浏览商品 查看账户

Copy after login

Main page display picture

The next step is to add the shopping cart page


        
Copy after login

Then the main shopping cart interface is as follows

购物车中有以下商品:

Query($sql,1); foreach($att as $n) { echo"
Copy after login
";} } ?>
商品名称 商品单价 购买数量
{$n[1]} {$n[2]} {$v[1]}
Copy after login

查看购物车 浏览商品 查看账户

14 15
Copy after login

Then we will When we get to the deletion page, we need to process when there is only one item in the shopping cart or when there is more than one item.

1) { $arr[$sy][1] = $arr[$sy][1]-1; } else //如果数量为1,移除 { unset($arr[$sy]); } $_SESSION["gwc"] = $arr; //最后存一下购物车的内容 header("location:gouwuche.php");
Copy after login

As for the submission page, we have to think about balance, inventory and other factors, so it is more cumbersome,

No I'm afraid, code it.

Query($ysql); $yarr[0][0];//总额 //购物车的总价格,前面有写过 $arr=array(); if (!empty($_SESSION["gwc"])) { $arr=$_SESSION["gwc"]; } $sum=0; foreach($arr as $v) { $v[1];//购物车中产品的数量 $psql="select price from fruit WHERE ids='{$v[0]}'"; $parr=$db->Query($psql); foreach($parr as $k) { $k[0];//产品的单价 $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]) //表示库存不足,这时要给顾客提示库存不足 { 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); } //所有的工作都做完了,这时我们就该提交订单了 // 这里我在数据库中做了两张表,把提交的订单添加到表中就可以保存了 //添加订单 $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; } ?> 
Copy after login

##It’s no problem to implement the function

The above is the detailed content of Example explanation of how to implement shopping cart function in PHP. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!