我有一个表格,我正在编辑我的订单。在我的编辑订单页面上,我正在分解我的订单。例如,订单详细信息(客户姓名、地址等),然后订购如下物品:
订单详细信息:
<form name="edit_order" id="edit_order" method="post">
<?
if ($order_details) {
// print_array($order_details);
foreach ($order_details as $key => $link) {
?>
<div width="200">
<div><b>Product: </b> <br><?=$link->product_name?> - <?=$link->product_id?></div>
<div><strong>Cost:</strong><br>£<?=$link->unit_cost?></div>
<div><strong>Pack Qty:</strong><br><input name="quantity" id="quantity" value="<?=$link->quantity?>" style="width:50px;" /> </div>
<div><strong>Pack Cost:</strong> <br><input name="pack_cost" id="pack_cost" value="<?=$link->pack_cost?>" style="width:50px;" /> </div>
<div><strong>Pallet Qty:</strong><br><input name="pallet_quantity" id="pallet_quantity" value="<?=$link->pallet_quantity?>" style="width:50px;" /> </div>
<div><strong>Pallet Cost:</strong><br><input name="pallet_quantity" id="pallet_quantity" value="<?=$link->pallet_unit?>" style="width:50px;" /> </div>
</div>
<?
}
}
?>
我的问题是:
如何在下一页上检索多个字段(输入框)的这些值?
例如,如果我在编辑订单页面上编辑 10 个产品的“pallet_quantity”和“pack_cost”,那么我如何使用循环在下一页检索它们以将它们保存在数据库中?
当我尝试像这样在网页上显示值时: print($_POST['pack_cost'])
它给了我单个值。如何循环遍历 POST 数组以显示我编辑的值并将其保存到数据库中?请帮帮我。