PHP Code:
for (i = 0; i < numberofradiobuttons; i ++) {
if (("Radio_Button" @ i).checked == true) temp.checked ++;
}
if (temp.checked == numberofradiobuttons) {
// all buttons are checked!
}
Just an example on how to check if all of them are checked.