今天写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的值,那这样获取值了我们要怎么解析出来呢。
第一中方法
代码如下 | 复制代码 |
<form action="test1.php" method="post"> <? for($i=0;$i<10;$i++){ ?> <input type="checkbox" name="interests[](不能去掉[])" value="<?=$i?>">test<?=$i?><br> <? } ?> <input type="submit"> </form> test1.php <?php |
?>
第二种用法
test3.php
代码如下 | 复制代码 |
<?php if(isset($_POST['submit'])){ |