Ok, here is something I can't understand. I have a couple of radio buttons but using the "checked" option is not working in Mozilla. Here is my code:
Now this works fine in IE but the No option is always ticked in Mozilla. What am I missing??????
HTML Code:
if ($reefready == "yes") { echo "<input type=radio name=reefready value=yes checked>Yes<br /> <input type=radio name=reefready value=no>No"; } else { echo "<input type=radio name=reefready value=yes>Yes<br /> <input type=radio name=reefready value=no checked>No"; }
Comment