我有一个用于编辑订单的表单.在我的编辑订单页面上,我正在分解订单.例如,订单详细信息(客户名称,地址等)然后订购这样的商品:
订单详细信息:
<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数组以显示并保存编辑后的值到数据库中?
请帮我.
解决方法:
您可以为输入值创建数组.看下面的代码…
<input name="pack_cost[]" id="pack_cost1" value="<?=$link->pack_cost?>" style="width:50px;" />
<input name="pack_cost[]" id="pack_cost2" value="<?=$link->pack_cost?>" style="width:50px;" />
<input name="pack_cost[]" id="pack_cost3" value="<?=$link->pack_cost?>" style="width:50px;" />
只要记住这些输入框的ID应该不同即可.
因此,当您在下一页上执行echo $_POST [‘pack_cost’]时,将得到一个名为pack_cost的数组,其中包含键和值.
已编辑
整个代码:-
<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<?php echo $key; ?>" value="<?=$link->quantity?>" style="width:50px;" /> </div>
<div><strong>Pack Cost:</strong> <br><input name="pack_cost[]" id="pack_cost<?php echo $key; ?>" value="<?=$link->pack_cost?>" style="width:50px;" /> </div>
<div><strong>Pallet Qty:</strong><br><input name="pallet_quantity[]" id="pallet_quantity<?php echo $key; ?>" value="<?=$link->pallet_quantity?>" style="width:50px;" /> </div>
<div><strong>Pallet Cost:</strong><br><input name="pallet_quantity[]" id="pallet_quantity<?php echo $key; ?>" value="<?=$link->pallet_unit?>" style="width:50px;" /> </div>
</div>
<?
}
}
?>
</form>
这就是将输出您的需求的东西.
下面是获取返回值的代码
if($_POST)
{
$field_array = array();
for( $i=0 ; $i < count($_POST['pack_cost']) ; $i++ )
{
$field_array[$i]['quantity'] = $_POST['quantity'][$i];
$field_array[$i]['pack_cost'] = $_POST['pack_cost'][$i];
$field_array[$i]['pallet_quantity'] = $_POST['pallet_quantity'][$i];
$field_array[$i]['pallet_cost'] = $_POST['pallet_cost'][$i];
// if you require then the query for your database
}
}