现在有多个radio选项
在另外的页面怎么接收我选中的那个、、
还有,我现在
<form action="tongji.php" method="post">
<input type="radio" value="1" />1<br/><input type="radio" value="2" />2<br/><input type="radio" value="3" />3<br/><input type="submit" value="投票" />
</form>为什么选中的 按钮不能显示以选中,是浏览器问题吗??

解决方案 »

  1.   


    <form action="tongji.php" method="post">
    <input type="radio" name="note" value="1" />1<br/>
    <input type="radio"  name="note" value="2" />2<br/>
    <input type="radio"  name="note" value="3" />3<br/>
    <input type="submit" value="投票" />
    </form>提交后,在tongji.php文件中就可以以$_POST['note']来查看所选的值