带有方括号的PHP帖子没有创建数组

时间:2014-03-17 07:01:07

标签: php post var-dump square-bracket

我已经在表单中使用了方括号几次,但是我现在正在使用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) "" } 

1 个答案:

答案 0 :(得分:0)

抱歉,我有一个不适合多维数组的CleanFormPost()函数。道歉并再次感谢!