php 读取单选按钮radio值
单选
1
2
if( $_POST )
{
echo 你选择了单选择,$_POST[RadioGroup1];
//由于单选按钮的属性同一时间只能被选中一个就所直接把他们名字相同就OK了。
}
?