php radio 單選框擷取與保持值的實現代碼

來源:互聯網
上載者:User

php 讀取選項按鈕radio值 複製代碼 代碼如下:<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>php 讀取選項按鈕radio值</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<label>
<input type="radio" name="RadioGroup1" value="1" />
單選</label>
1<br />
<label>
<input type="radio" name="RadioGroup1" value="2" />
單選</label>
2</p>
<p>
<label>
<input type="submit" name="Submit" value="提交" />
</label>
<br />
</p>
</form>
</body>
</html>
<?
if( $_POST )
{
echo '你選擇了單選擇',$_POST['RadioGroup1'];
//由於選項按鈕的屬性同一時間只能被選中一個就所直接把他們名字相同就OK了。
}
?>

php 中怎樣保持選項按鈕的值的方法,主要是思路。複製代碼 代碼如下:<input name="sex" type="radio"value="男" <?php if($_POST['sex'] != "女") echo "checked=checked;"?> />男
<input type="radio" name="sex" value="女" <?php if($_POST['sex'] == "女") echo "checked=checked";?> />女

另外建議不要用 漢字識別,用 0,1 代表 男,女比較好。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.