The first is a few simple login pages
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"登录失败"; }
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.
大苹果购物网
代号 | 水果名称 | 水果价格 | 原产地 | 货架 | 库存量 | |
{$v[0]} | // 从数据库调出我们所需要的内容{$v[1]} | {$v[2]} | {$v[3]} | {$v[4]} | {$v[5]} | 购买 | //这里的购买相当于添加购物车的功能
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
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");
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; } ?>
##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!