有问题。我得到了这样的表格
<input name="product[sub_name][]">
<input name="product[price][]">
<input name="product[random][]">
<input name="product[just_field][]">
我可以按“添加更多”添加许多这种形式的块。接收邮政数据我做的东西。
$field = $_POST['product'];
foreach ($field as $key => $values) {
foreach($values as $value) {
$key.' - '.$value;
}
}
我需要代码根据发布的行在数据库中插入多行。问题是,我不知道如何只获得例如“价格”。目标是在数据库中插入所有数据。希望大家明白我的逻辑。
这是 print_r 输出。我可以得到比两种更多的可能性
Array (
[sub_name] => Array ( [0] => New car [1] => New bike )
[standart_price] => Array ( [0] => 100 [1] => 300 )
[cupon_price] => Array ( [0] => 50 [1] => 200 )
[max_purchases] => Array ( [0] => 1000 [1] => 100 )
)