今天寫php的時候發現$_POST["arr"]無法獲取參數arr的數組
例如有以下表單需要提交
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />
<input type="checkbox" name="arr" value="" />
使用$_POST["arr"]只能獲得最後選擇的復選框的值
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />
<input type="checkbox" name="arr[]" value="" />
這樣就可以使用$_POST["arr"]獲得全部選中的checkbox的值了
From:http://tw.wingwit.com/Article/program/PHP/201311/21235.html