代碼單選按鈕單選按鈕的價值:檢索使用PHP
<h1 style="margin:0; margin-top:10px; padding:0; padding-left:25px; padding-bottom:10px; font-family:sans-serif;">
</h1>
<div style="background:#1794FF; color:#fafafa; padding:10px;">
<h3></h3>
<table>
<tr>
<td>
<input type="radio" name="radiog_lite" id="radio1" class="css-checkbox" />
<label for="radio1" class="css-label">Neighbourhood Only</label>
</td>
<td>
<input type="radio" name="radiog_lite" id="radio2" class="css-checkbox" checked="checked"/><label for="radio2" class="css-label">Zipcode Only</label>
</td>
<td>
<input type="radio" name="radiog_lite" id="radio3" class="css-checkbox" />
<label for="radio3" class="css-label">Near Zipcode</label>
</td>
<td>
<input type="radio" name="radiog_lite" id="radio4" class="css-checkbox" />
<label for="radio1" class="css-label">City-Wide</label>
</td>
</tr>
</table>
</div>
<div style="background:#1794FF; color:#222; padding:10px;">
PHP代碼:
<?PHP
$selected_radio = $_POST['radiog_lite'];
print $selected_radio;
?>
表單提交我在上面的代碼到達後。但是,它表示值爲「on」。爲什麼不打印選定的單選按鈕名稱?
你的表單在哪裏? – Jenz
'的默認'value'屬性是*「on」*。如果要發送不同的值,請使用單選按鈕 – Phil
添加值屬性值是否爲無線標記中的值屬性? – Dinesh