<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代碼<?phpvar_dump($_POST);$chan = $_POST['changqu'];echo $chan;?>//報錯提示Notice: Undefined index: changqu in C:\wamp\www\baoquan\xierushuju.php on line 4
1 回答

墨色風雨
TA貢獻1853條經驗 獲得超6個贊
html代碼:
? ? <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>
? ? ? ? <button>提交</button>
? ? </form>
php代碼:
<?php
header("content-type:text/html;charset=utf-8");
$chan = $_POST['changqu'];
echo $chan;
?>
望采納!
- 1 回答
- 0 關注
- 946 瀏覽
添加回答
舉報
0/150
提交
取消