我在发布此问题后提出的另一个解决方案,而不是每次我刚才说的时候使用for循环添加一个:
$session->cart[$params->id] => $qty;
我发现这是一种更好的方式,因为您可以通过这种方式更新购物车,而不是将所需的数字添加到购物车中已有的商品上。
对于阅读这篇文章的所有人,我想出了一个使用处理程序更新购物车的解决方案。它如下。 。 。 首先是details.php的形式部分
<form method="post"> //should be added to retrieve the qty data from the text field.
接下来在处理程序中。 。 。添加以下循环和变量
$qty = $_POST['qty']; or $qty = $_REQUEST['qty'];
然后
for($i =0; $i < $qty ; $i++){
++$session->cart[$params->id];
}
我正在创建一个使用php处理某些任务的购物车网站。我无法更改购物车中商品的数量。这是我的代码,用于获取输入处理提交并在购物车视图中显示数量
details.php:
<form id="cart_form" action="handler-add-cart.php">
<input type="hidden" name="id" value="<?php echo $product->id ?>" />
<input type="submit" value="add to cart"/>
**Quantity:<input type="text" name="qty" />**
</form>
handler_add_cart.php:
<?php
require_once "include/Session.php";
$session = new Session();
**$params = (object) $_REQUEST;
++$session->cart[$params->id];**
header("location: cart.php");
cart.php:
<?php
require_once "include/Session.php";
$session = new Session();
require_once "include/db.php";
// The $cart array simplifies the view generation below, keeping
// computations and database accesses in this controller section.
$cart = array();
if (isset($session->cart)) {
$total = 0;
foreach ($session->cart as $prod_id => $qty) {
$product = R::load("products", $prod_id);
$total += $qty * $product->price;
$entry = new stdClass(); // entry will contain info for table
$entry->id = $prod_id;
$entry->price = $product->price;
$entry->name = $product->name;
**$entry->qty = $qty ;**
$cart[] = $entry;
}
}
?>
//这里我删除了一些html,专注于我的问题我在文件中有所有标签,所以这不是问题
<h2>Cart</h2>
<?php if (count($cart)): ?>
<table id="display">
<tr>
<th>product</th><th>id</th><th>quantity</th><th class='price'>price</th>
</tr>
<?php foreach ($cart as $entry): ?>
<tr>
<td><a href="details.php?id=<?php echo $entry->id ?>"
><?php echo $entry->name ?></a></td>
<td><?php echo $entry->id ?></td>
**<td class='qty'><?php echo $entry->qty ?></td>**
i cleared these fields below to not distract from the issue im having
<td >
</td>
</tr>
<?php endforeach ?>
<tr>
<th >
</th>
</tr>
</table>
</body>
</html>
答案 0 :(得分:0)
使用表格中输入的值增加数量: -
$entry->qty = $qty + $_POST['qty'];
虽然您可能想要验证用户是否已输入数字并且表单已发布,但您可能需要以下内容: -
if (isset($_POST['qty']) && is_numeric($_POST['qty])) {
$entry->qty = $qty + $_POST['qty'];
}
else
{
$entry->qty = $qty;
}