我在数据库中存储了一个单选按钮值,它可以是真、假或 NULL。在 null 或 false 的情况下,答案是 0,即为 false。有没有检查空值的解决方案?我尝试过使用 isset 和 Empty,但这些都没有帮助。数据库是 MSSQL,数据类型是位来存储单选按钮的值
<input name="radioVal" type="radio" id="radioVal" value="false"
<?PHP
if(row['radioVal'] == false )
echo "checked='checked' ";
}
?> />
<input name="radioVal" type="radio" id="radioVal" value="true"
<?PHP
if(row['radioVal'] == true )
echo "checked='checked' ";
}
?> />