Quote:
Originally Posted by Skyld
Radio buttons are only supposed to allow one to be selected from a group.
This might be more accurate:
PHP Code:
temp.buttons = {"Radio_Button1", "Radio_Button2", "Radio_Button3"};
for (temp.button: temp.buttons)
{
if ((@ temp.button).checked)
{
// This is the checked button, so do whatever and stop the loop
break;
}
}
|
Oh yeah, long time since I last used them.