我有一个单选类型的表格,当用户填写并提交它时,我想添加用户编辑和更改他选择的答案的能力..所以当他点击(编辑)时,他会回到他以前的表格选定的按钮.. 我知道如何从数据库中获取数据,但是如何使先前选定的按钮出现在表单上?
所以其中一个问题就像..
<tr>
<th bgcolor='FF6600'> Clarity of speaking
(Could you hear the speaker properly and clearly?)<font size="4" > </font></th>
<td> <input type="radio" name ="v3" value = "4" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "3" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "2" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "1" onclick="updateTotal();" /></td>
</tr>
我试过了,但没有成功
checked="<?php echo $v3; ?>"