更新产品数量(php和Mysql)
Posted
技术标签:
【中文标题】更新产品数量(php和Mysql)【英文标题】:Updating product quantity (php and Mysql) 【发布时间】:2015-04-16 07:28:00 【问题描述】:我正在尝试更新 basket.php 页面中的产品数量。该数量也将发布在 mysql 数据库中 basket 表中的 qty 列下。但不幸的是,它并没有像我希望的那样工作。
问题:
-
更新数量仅适用于购物篮中的一件商品。
在框内输入数量说“3”并单击update_qty按钮后,框内的值变回1。但价格已正确更新。
添加多个商品并更新其数量会导致总价错误,并且最后一个商品的数量会保存在购物篮表中所有商品的数量列中。
数据库结构:
篮子桌
f_id type int(10) primary key//food id
ip_add type varchar(225)
qty type int(10)//quantity in basket
餐桌
1 food_id type int(100) AUTO_INCREMENT primary key
2 food_cat type int(100)
3 food_type type int(100)
4 food_title type varchar(255)
5 food_price type float(23,2)
6 food_desc type text
7 food_image type text
8 food_keywords type text
这是我的代码:
basket.php
session_start();
include ("functions/functions.php");
<form action = " " method="post" enctype="multipart/form-data">
<table>
<tr>
<th>Remove</th>
<th>Dish(s)</th>
<th>Quantity</th>
<th>Price</th>
</tr>
<?php
$total = 0;
global $con;
$ip = getIp();
$sel_price = "select * from basket where ip_add='$ip'";
$run_price = mysqli_query($con, $sel_price);
while ($p_price = mysqli_fetch_array($run_price))
$foo_id = $p_price['f_id'];
$foo_price = "select * from food where food_id ='$foo_id'";
$run_foo_price = mysqli_query($con, $foo_price);
while ($ff_price = mysqli_fetch_array($run_foo_price))
$food_price = array ($ff_price['food_price']);
$food_title = $ff_price['food_title'];
$food_image = $ff_price ['food_image'];
$single_price = $ff_price['food_price'];
$values = array_sum($food_price);
$total += $values;
?>
<?php
//updates quantity of items in basket
if (isset($_POST['update_qty']))
$qty = $_POST['qty'];
$update_qty = "update basket set qty='$qty'";
$run_qty = mysqli_query($con, $update_qty);
$total = $values*$qty;
?>
<input type="number" name="qty" value="<?php echo $_SESSION['qty']; ?>" >
<?php ?>
<b>Sub Total:</b>
<?php echo "£". $total;?>
<div id="up">
<input type="submit" name="update_basket" value="Remove">
</div>
<div id="up">
<input type="submit" name="update_qty" value="Update Quantity">
</div>
<div id="con">
<input type="submit" name="continue" value="Continue Shopping">
</div>
<div id="chck">
<a href="checkout.php"><button type="hidden">Checkout</button></a>
</div>
functions.php
//Creates the basket
function basket()
if (isset($_GET['add_basket']))
global $con;
$ip = getIp();
$foo_id = $_GET['add_basket'];
$check_foo = "select * from basket where ip_add= '$ip' AND f_id =
'$foo_id'";
$run_check = mysqli_query($con, $check_foo);
if(mysqli_num_rows($run_check)>0)
echo " ";
else
$insert_foo = "insert into basket (f_id,ip_add) values ('$foo_id', '$ip')";
$run_foo = mysqli_query($con, $insert_foo);
echo "<script>window.open('order.php','_self')</script>";
//Get total items in Basket
function total_items()
if (isset ($_GET['add_basket']))
global $con;
$ip = getIp();
$get_items = "select * from basket where ip_add='$ip'";
$run_items = mysqli_query($con, $get_items);
$count_items = mysqli_num_rows($run_items);
else
global $con;
$ip = getIp();
$get_items = "select * from basket where ip_add='$ip'";
$run_items = mysqli_query($con, $get_items);
$count_items = mysqli_num_rows($run_items);
echo $count_items;
//get the total price of items in basket
function total_price()
$total = 0;
global $con;
$ip = getIp();
$sel_price = "select * from basket where ip_add='$ip'";
$run_price = mysqli_query($con, $sel_price);
while ($p_price = mysqli_fetch_array($run_price))
$foo_id = $p_price['f_id'];
$foo_price = "select * from food where food_id ='$foo_id'";
$run_foo_price = mysqli_query($con, $foo_price);
while ($ff_price = mysqli_fetch_array($run_foo_price))
$food_price = array ($ff_price['food_price']);
$values = array_sum($food_price);
$total += $values;
echo "£" . $total;
如何更改我的代码来解决这些问题。
谢谢。
【问题讨论】:
这里有一些不好的做法,不要使用IP来识别人。一个IP可以上千人,任何一个都可以使用多个IP 谢谢,我稍后会更改。目前我正在尝试让核心功能正常工作 识别合适的购物车\用户不是核心? 从未说过不是。我正在尝试一次解决一个问题 【参考方案1】:@connor991,你的代码很笨拙。你需要重写你的代码。我会建议两种方法。
但首先,您需要有一个表单,其中显示所有商品并且用户选择要购买的商品。然后您将他们重定向到您提供更多信息的地方,然后他们选择质量。
然后,第一种方法:显示购物车中的所有商品时,将它们显示在单独的form
标签中。这样,您就有了一个 textbox
和当前的 qty
,用户可以根据需要进行更新。您还提供了一个submit
按钮来提交表单以进行更新。这样,您可以获取单独的 food_id
s 和 qty
s 并进行相应更新。
我还意识到,由于一位用户ip
可以购买多件商品,因此仅根据ip_add
更新将更新他/她ip_add
下的所有产品。因此,您需要这样做:
// Assuming that you have ip and food_id values already
UPDATE basket SET qty=$qty WHERE ip_add=$ip AND food_id=$food_id
第二个选项是显示表格中的所有项目而不提供textbook
以立即更新qty
。您针对每个购物车项目显示一个update
链接,以便当他们单击它时,您将该特定购物车项目的 food_id 和 ip_id 传递到您从数据库中获取数据的新页面,现在显示它们加上 qty
但在textbook
中使用qty
。当用户单击此页面上的更新按钮时,您将从该特定页面检索值并执行更新。
希望这会有所帮助。
【讨论】:
嗨,迈克尔,感谢您的帮助。我已经按照你说的做了。更新:(1)当我将两个项目添加到篮子中并更新两个项目的数量时说“6”和“6”。在数量列中,第一项记录为“3”,第二项记录为“6”。 (2) 更新后购物篮页面数字框的数量变回1,更新数量的两个项目的小计错误(小于应有的数字) 我还编辑了我的问题以包含数据库结构 @connor991,在我更新我的答案之前,请你解释一下这个<input type="number" name="qty" value="<?php echo $_SESSION['qty']; ?>" >
我认为你应该删除你正在设置的值并重试。
我已经删除了值集,它在更新数量后删除了框中的值。 (即选择数量后,框内的数量被擦除)。此外,我在篮子中输入的任何数量都不会发布到篮子表中的数量列。
我试图回显在会话中输入的数量,因此如果用户导航到另一个页面并返回到购物篮,则该会话的数量设置保持不变。以上是关于更新产品数量(php和Mysql)的主要内容,如果未能解决你的问题,请参考以下文章