PHP/MySQL に基づいたラジオ ボタン セットの作成
ボタンがデフォルトでチェックされているという問題があります。
コード:
$first = TRUE;
if (mysql_num_rows($result))
{
for ($j = 0; $j < mysql_num_rows($result); $j++)
{
$currentCat = mysql_result($result, $j, 'category');
if ($first == TRUE)
{
$first = FALSE;
echo "<input type='radio' name='createCat' value='$currentCat' checked='checked' />$currentCat checked";
}
else
{
echo "<input type='radio' name='createCat' value='$currentCat' />$currentCat ";
echo "non";
}
}
echo <<<_END
<br /><input type='submit' value='Create' /> $error
</form>
_END;
}
最初のボックスがチェックされていないことに注意してください HTML での出力:
<input type='radio' name='createCat' value='opt1' checked='checked' />opt1 checked<input type='radio' name='createCat' value='opt2' />opt2 non<input type='radio' name='createCat' value='Accounts' />Accounts non <br /><input type='submit' value='Create' />