我已经从$tablere中的数据库中获取了数据。现在我必须在textarea中打印值,还必须检查单选按钮。
这是我的密码,
$sql = "select (address, gender) from stud table";
if($result=mysqli_query($conn,$sql)) {
while($row = mysqli_fetch_array($result)) {
$tableRe[]=$row;
}
}
<form>
Address : <br>
<textarea value="<?php echo $tableRe[0]['address']; ?>"></textarea><br>
Gender : <br>
<input type="radio" value="Male">Male
<input type="radio" value="Female">Female <br>
<input type="submit" value="Save">
</form>
请帮我解决这个问题。提前谢谢。
2条答案
按热度按时间tquggr8v1#
你需要申请条件
checked
html属性。试试这个:
yc0p9oo02#
值必须放在开始标记和结束标记之间:
要将收音机/复选框设置为选中/选中,您需要向其添加“checked”属性: