在php编程中,对多选框checkbox的取值方式,主要借助于php数组的形式。
比如下面这个html页面,内容:
<FORM method="post" action="checkTest.php"> <INPUT name="test[]" type="checkbox" value="1" /> <INPUT type="checkbox" name="test[]" value="2" /> <INPUT type="checkbox" name="test[]" value="3" /> <INPUT type="checkbox" name="test[]" value="4" /> <INPUT type="checkbox" name="test[]" value="5" /> <INPUT type="submit" name="Submit" value="Submit" /> </FORM>
注意:
input的name属性,各个属性内容都一样,而且都是test[],加上[]的原因在于让test的内容变成数组形式传递。
以下是checkTest.php的代码内容:
<?php //取checkbox元素值 echo implode(",",$_POST['test']); ?>
输出内容时,只需注意使用implode函数将数组内容转化为字符串即可。
注意:
该功能可在删除多记录等场合运用。如Delete from tbl where ID in (implode(",",$_POST['test']))即可。
完整代码如下:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>php取checkbox多选框的值_www.jb200.com</title> </head> <body> html复选框,如果以数据组形式发送给php脚本,则须以checkbox[]形式。 <form id="form1" name="form1" method="post" action=""> <label> <input type="checkbox" name="checkbox[]" value="1" /> </label> <label> <input type="checkbox" name="checkbox[]" value="2" /> </label> <label> <input type="checkbox" name="checkbox[]" value="www.jb200.com" /> </label> <label> <input type="checkbox" name="checkbox[]" value="jb200.com" /> </label> <label> <input type="submit" name="Submit" value="提交" /> </label> </form> </body> </html> <? //判断是否点击提交 if( $_POST ) { $array = $_POST['checkbox']; print_r($array); } /* 结果: Array ( [0] => 1 [1] => 2 [2] => www.jb200.com [3] => jb200.com ) */ ?>