<form action="xierushuju.php" method="post" target="_blank">
<table id="table2">
<tr>
<td><b>厂 区:</b></td>
<td>
南区:<input type="radio" name="changqu" value ="南区" />
北区:<input type="radio" name="changqu" value ="北区" />
</td>
</tr>
</table >
//php代码
<?php
var_dump($_POST);
$chan = $_POST['changqu'];
echo $chan;
?>
//报错提示
Notice: Undefined index: changqu in C:\wamp\www\baoquan\xierushuju.php on line 4
墨色风雨