我已经在表单中使用了方括号几次,但是我现在正在使用Twitter BootStrap(这会有什么不同吗?)不会发送数据(!) - 12年编码和现在我问这个愚蠢的问题。
我通常可以做的是手动(或通过循环)echo $ _POST ['itemnum'] [0] / $ _POST ['itemnum'] [1] / etc - 但它的回来是空的..
<form method="POST" action="'.phpself.'" class="form-horizontal" role="form">
...(table with 3 identical rows)..
<tr>
<td >
<input type="text" name="itemnum[]" class="form-control" id="inputEmail3" placeholder="Item #"></td>
<td ><input type="text" name="itemdesc[]" class="form-control" id="inputEmail3" placeholder="Description"></td>
<td ><input type="number" name="itemqty[]" class="form-control" style="max-width:80px;display:inline" placeholder="Qty"></td>
</tr>
....
</form>
var_dump:
array(5) { ["itemnum"]=> string(0) "" ["itemdesc"]=> string(0) "" ["itemqty"]=> string(0) "" ["message"]=> string(24) " d hef s s dvs sd vsd vs" ["submitRFQ"]=> string(0) "" }
答案 0 :(得分:0)