The code was a little hard to decipher, please remember people can't see your whole script, so make it so that it's a properly separated out bit of code...
<?
echo "<input type=\"radio\" name=\"autorefresh\" value=\"1\" ";
if ($myrow["autorefresh"]==0) {
echo " checked";
}
echo " > Disable <input type=\"radio\" name=\"autorefresh\" value=\"2\" ";
if ($myrow["autorefresh"]==1) {
echo " checked";
}
echo " > Enable";
?>
but it seems to work fine for me, perhaps remove the space after starting the <input type=\"radio\" (yours is < input type=\"radio\"
ucbones