I have a problem with setting the default radio button to the value from a mysql db.
I select a certain record from the table and I want to update the fields if necessary.
It is just a simple ('y', 'n') radio set.
Therefore the value
This would be the HTML for it:
<tr><td>PC rebooted?:</td><td>Yes<input type=radio name="pcreboot" value="y" CHECKED>No<input type=radio name="pcreboot"
value="n"></td></tr>
How do I output it as a radioset with the default value selected in PHP?