投稿からいくつかの入力値を取得して配列に格納したいと考えています。php sortをデータを配列に投稿する
Array ([itemquantity] => Array (
[0] => 1
[1] => 4
)
[buyproduct] => Array (
[0] => 2
[1] => 5
)
[freeproduct] => Array (
[0] => 3
[1] => 6
)
どのように各iによってグループ化することができます:私は(フィールドが繰り返されている)は、次の取得形式としますprint_rを送信すると
<input type="text" class="form-control" id="exampleInputPassword1" name="itemquantity[]" />
<input type="text" class="form-control gettitles" id="exampleInputPassword1" name="buyproduct[]" />
<input type="text" class="form-control gettitles" id="exampleInputPassword1" name="freeproduct[]" />
:ここでは、反復フィールドです私の入力要素であり、繰り返し申請?
だから、例えば私は、このような出力期待:
Array(
Array [0](
[itemquantity] => 1
[buyquantity] => 2
[freeproduct] => 3
)
Array [1](
[itemquantity] => 4
[buyquantity] => 5
[freeproduct] => 6
)
)
すべてのヘルプは、おかげでいただければ幸いです!
'foreach'ループを使用します –
あなたは例がありますか? – danyo