45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:php中checkbox多选框上传失败的代码的写法的详细介绍

php中checkbox多选框上传失败的代码的写法的详细介绍

2017-04-30 21:32:28 来源:www.45fan.com 【

php中checkbox多选框上传失败的代码的写法的详细介绍

用惯Java和其他语言的时候,表单上传只需要checkbox的name相同的时候就可以上传了

<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却只有在这种情况下,name要写成数组形式才能正常表单提交

<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处理Checkbox复选框表单提交问题

PHP表单提交页面复选框的名称后要加[],这样在接收页面才能得到正确的结果。表单提交后得到的是一个数组,然后通过访问数组元素得到表单的具体vaule值。得到的checkbox1的值,默认有</br>换行。

表单代码:

<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 
if(isset($_POST["Download"])) 
{ 
foreach($_REQUEST['checkbox1'] as $checkbox1) 
{ 
echo $checkbox1; 
} 
} 
?> 

以上所述是小编给大家介绍的PHP中CheckBox多选框上传失败的代码写法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对路饭网站的支持!


本文地址:http://www.45fan.com/bcdm/88181.html
Tags: checkbox PHP 多选
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部