php获取checkbox的值
我在网上查了,都是吧checkbox的name属性设置成数组了,可是公司领导说不让把checkbox的name设置成数组,就得用普通的,还要在另外一个页面获得复选值,应该...
我在网上查了,都是吧checkbox的name属性设置成数组了,可是公司领导说不让把checkbox的name设置成数组,就得用普通的,还要在另外一个页面获得复选值,应该怎么做?
展开
2个回答
展开全部
呵呵,你们领导还真奇怪,这么变态的要求都能提的出来。
这个问题我以前研究http协议的时候搞过,使用一般的办法确实没办法获得checkbox的值。
现在拿出来给你看下吧,很简单的,主要是让你看思想的。
<?php
$headercontent=file_get_contents("php://input");
$headercontentarr=explode("&",$headercontent);
$_BAIPOST=array();
foreach($headercontentarr as $value){
$tarr=explode("=",$value);
$_BAIPOST[]=array("name"=>urldecode($tarr[0]),"value"=>urldecode($tarr[1]));
}
echo "<pre>";
print_r($_BAIPOST);
?>
<form action="" method="post">
<input type="checkbox" name="aaa" value="1"/>1
<input type="checkbox" name="aaa" value="2"/>2
<input type="checkbox" name="aaa" value="3"/>3
<input type="checkbox" name="aaa" value="4"/>4
<input type="checkbox" name="aaa" value="5"/>5
<input type="checkbox" name="aaa" value="6"/>6
<input type="checkbox" name="aaa" value="7"/>7
<input type="text" name="bbbb" value="我是一个一般的input"/>
<input type="text" name="特殊的name" value="我是一个特殊的name"/>
<input type="submit" value="123456"/>
</form>
这个问题我以前研究http协议的时候搞过,使用一般的办法确实没办法获得checkbox的值。
现在拿出来给你看下吧,很简单的,主要是让你看思想的。
<?php
$headercontent=file_get_contents("php://input");
$headercontentarr=explode("&",$headercontent);
$_BAIPOST=array();
foreach($headercontentarr as $value){
$tarr=explode("=",$value);
$_BAIPOST[]=array("name"=>urldecode($tarr[0]),"value"=>urldecode($tarr[1]));
}
echo "<pre>";
print_r($_BAIPOST);
?>
<form action="" method="post">
<input type="checkbox" name="aaa" value="1"/>1
<input type="checkbox" name="aaa" value="2"/>2
<input type="checkbox" name="aaa" value="3"/>3
<input type="checkbox" name="aaa" value="4"/>4
<input type="checkbox" name="aaa" value="5"/>5
<input type="checkbox" name="aaa" value="6"/>6
<input type="checkbox" name="aaa" value="7"/>7
<input type="text" name="bbbb" value="我是一个一般的input"/>
<input type="text" name="特殊的name" value="我是一个特殊的name"/>
<input type="submit" value="123456"/>
</form>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询