首页 > 代码库 > 表单提交 多个name相同的input

表单提交 多个name相同的input

<form action="{:U(‘Index/test‘)}" method="post"><foreach name="div" item="vo">组名:<input type="text" value="http://www.mamicode.com/{$vo.groupName}" name=gp[]><br><br>用户名:<input type="text" value="http://www.mamicode.com/{$vo.username}" name=user[]><br><br></foreach><input type="submit"></form>
<?php// 本类由系统自动生成,仅供测试用途class IndexAction extends Action {    public function index(){    $this->display();    }    public function group(){        header("Content-Type:text/html; charset=utf-8");$User = M("groupuser");    // 实例化模型类$data = $User->select();$this->assign(‘div‘,$data);$this->display(‘Index/index‘);//dump($data);    }public function test(){$Index = A(‘admin://Index‘);$gp=$_POST[‘gp‘];$user=$_POST[‘user‘];dump($gp);dump($user);}}

 

表单提交 多个name相同的input