我想知道爲什麼我無法將單選按鈕的值存入PHP變量。提前致謝!單選按鈕與PHP
PHP CODE:
$Type = (isset($_GET['type'])?$_GET['type'] : null);
echo "<b>Type</b>";
echo $Type;
這裏是越來越顯示在類型變量沒有值。
HTML代碼:
<input type = 'radio' name='type' value='Residential' checked<?PHP print $Type;>> Residential<br>
<input type = "radio" name="type" value="Commercial" <?PHP print $Type;?>> Commercial<br>
你可以在你的文章中加入表格的其餘部分嗎?什麼是'$ Type'? – dimlucas
請將您的表單+ php代碼完全填入 –
是否在'