11)PHP,checkbox的post提交方式处理

2021-06-08 10:02

阅读:549

YPE html>

标签:echo   ref   put   type   obb   rds   等等   网页   XML   

    就是一个表单中会有input的checkbox形式,那么怎么处理,就有了问题,一般采用二维数组来处理

代码展示:

 1 span>"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 "http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
 3 4     "Content-Type" content="text/html;charset=UTF-8" />
 5     网页标题 6     "keywords" content="关键字列表" />
 7     "description" content="网页描述" />
 8     "stylesheet" type="text/css" href="" />
 9     10     11 
12 
13     
"c.php" method="get" > 14 项目1: "text" name="uName" /> 15 项目2: "password" name="uPswd" /> 16 项目3: "text" name="age" /> 17
18 爱好: 19 足球 20 篮球 21 中国足球 22
23 "submit" value="提交" /> 24
25
26 "4get_2.php?uName=test1&uPswd=123" > 文字。。。 27 28

然后,我的那个php代码处理:

或者这么写:
echo
$_GET[‘hobby‘][‘0‘];

1
var_dump($_GET[hobby][0]) ;

注意:这个看你选择了几个,要是  你选择了两个,那么是      $_GET[‘hobby‘][‘0‘]   ~~~~~··$_GET[‘hobby‘][‘1‘]

          但是  ,你要是没选

                  ,技术分享

                  就没有$_GET[‘hobby‘][‘0‘]等等

 

 

 1 span>"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 "http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
 3  4     "Content-Type" content="text/html;charset=UTF-8" />
 5     网页标题 6     "keywords" content="关键字列表" />
 7     "description" content="网页描述" />
 8     "stylesheet" type="text/css" href="" />
 9     10     11 
12 
13 
"c.php" method="get" > 14 15 单选框:
16 男性: 17 "radio" checked="checked" name="Sex" value="male" /> 18
19 女性: 20 "radio" name="Sex" value="female" /> 21

或者上面的这么处理:
单选框:

男性:



女性:

22 爱好: 23 "checkbox" name="hobby[]" value="足球" />足球 24 "checkbox" name="hobby[]" value="篮球" />篮球 25 "checkbox" name="hobby[]" value="中国足球" />中国足球 26
27 28 29

处理代码:

 

 

var_dump($_GET[‘Sex‘]) ;
这个结果是一个string

第二种处理:

 

var_dump($_GET[‘Sex‘][‘0‘]) ;
这个结果是一个string

 

11)PHP,checkbox的post提交方式处理

标签:echo   ref   put   type   obb   rds   等等   网页   XML   

原文地址:http://www.cnblogs.com/xiaoyoucai/p/7307060.html


评论


亲,登录后才可以留言!