<form action="xierushuju.php" method="post" target="_blank"><table id="table2"><tr><td><b>廠 區(qū):</b></td><td>南區(qū):<input type="radio" name="changqu" value ="南區(qū)" /> 北區(qū):<input type="radio" name="changqu" value ="北區(qū)" /></td></tr></table > //php代碼<?phpvar_dump($_POST);$chan = $_POST['changqu'];echo $chan;?>//報(bào)錯(cuò)提示Notice: Undefined index: changqu in C:\wamp\www\baoquan\xierushuju.php on line 4
1 回答

墨色風(fēng)雨
TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超6個(gè)贊
html代碼:
? ? <form action="xierushuju.php" method="post" target="_blank">
? ? ? ? <table id="table2">
? ? ? ? <tr>
? ? ? ? <td><b>廠 區(qū):</b></td>
? ? ? ? <td>
? ? ? ? 南區(qū):<input type="radio" name="changqu" value ="南區(qū)" />??
? ? ? ? 北區(qū):<input type="radio" name="changqu" value ="北區(qū)" />
? ? ? ? </td>
? ? ? ? </tr>
? ? ? ? </table>
? ? ? ? <button>提交</button>
? ? </form>
php代碼:
<?php
header("content-type:text/html;charset=utf-8");
$chan = $_POST['changqu'];
echo $chan;
?>
望采納!
- 1 回答
- 0 關(guān)注
- 942 瀏覽
添加回答
舉報(bào)
0/150
提交
取消