3

我有一个表格,我正在编辑我的订单。在我的编辑订单页面上,我正在分解我的订单。例如,订单详细信息(客户姓名、地址等),然后订购如下物品:

订单详细信息:

     <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>&pound;<?=$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 数组以显示我编辑的值并将其保存到数据库中?请帮帮我。

4

3 回答 3

4

您可以为输入值创建数组。看下面的代码...

<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>&pound;<?=$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
    }
}
于 2012-12-17T11:50:42.793 回答
1

据我了解,你想这样做:

foreach ($_POST as $tag => $value) {
// Do whatever you want with the params
}
于 2012-12-17T11:46:50.863 回答
0

使用会话级存储

(i.e) $_SESSION[ID][field1], $_SESSION[ID][field2], $_SESSION[ID][field3]

在从一个页面移动到另一个页面以获取其他字段时..您将前一页的数据存储在具有一个会话 ID 的 SESSION 中..并且在接下来的页面中执行相同的操作..但对整个表单使用相同的会话 ID ...在下一页或最后一页显示之后...或者如果您需要将数据从会话变量存储到数据库中(在进程结束时),如果您不希望取消设置/删除所有这些会话数据,包括 id...

对于 Codeigniter,您将会话库用于这些概念......请参阅为会话变量分配和检索值,,

CodeIgniter 会话

于 2012-12-17T12:01:46.307 回答