《PHP编程:PHP中CheckBox多选框上传失败的代码写法》要点:
本文介绍了PHP编程:PHP中CheckBox多选框上传失败的代码写法,希望对您有用。如果有疑问,可以联系我们。
PHP编程用惯Java和其他语言的时候,表单上传只需要checkbox的name相同的时候就可以上传了
PHP编程
<input type="checkbox" name="checkbox" value="1"> 选项
<input type="checkbox" name="checkbox" value="2"> 选项
<input type="checkbox" name="checkbox" value="3"> 选项
<input type='button' value='确定' onclick="fun()"/>
PHP编程但是PHP却只有在这种情况下,name要写成数组形式才能正常表单提交
PHP编程
<input type="checkbox" name="checkbox[]" value="1"> 选项1
<input type="checkbox" name="checkbox[]" value="2"> 选项2
<input type="checkbox" name="checkbox[]" value="3"> 选项3
<input type="checkbox" name="checkbox[]" value="4"> 选项4
<input type="checkbox" name="checkbox[]" value="5"> 选项5
<input type="checkbox" name="checkbox[]" value="6"> 选项6
<input type='button' value='确定' onclick="fun()"/>
PHP编程下面给大家补充PHP处理Checkbox复选框表单提交问题
PHP编程PHP表单提交页面复选框的名称后要加[],这样在接收页面才能得到正确的结果.表单提交后得到的是一个数组,然后通过访问数组元素得到表单的具体vaule值.得到的checkbox1的值,默认有</br>换行.
PHP编程表单代码:
PHP编程
<form action="" method="post" name="asp">
复选框1:<input type="checkbox" name="checkbox1[]" value="1" />
复选框2:<input type="checkbox" name="checkbox1[]" value="2" />
复选框3:<input type="checkbox" name="checkbox1[]" value="3" />
<input type="submit" name= "Download" vaue="Download" />
</form>
PHP编程PHP处理表单代码:
PHP编程
<?php
if(isset($_POST["Download"]))
{
foreach($_REQUEST['checkbox1'] as $checkbox1)
{
echo $checkbox1;
}
}
?>
PHP编程以上所述是小编给大家介绍的PHP中CheckBox多选框上传失败的代码写法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的.在此也非常感谢大家对维易PHP网站的支持!
转载请注明本页网址:
http://www.vephp.com/jiaocheng/1817.html