Hiya all,
Quick question: I have a form with numerous radion buttons, all in a standard format, and I want to check first of all if they have all been filled in. Problem though is that a radio group that has not been checked wont have a value passed in HTTP_POST_VALS? I can get around it by "initalising" each radio group by a hidden element, but that seems a bit of a quick-fix?!?
i.e. what I do now is
<input type=hidden name=xyz value="">
<input type=radio name=xyz value=yes>
<input type=radio name=xyz value=no>
So if the first line is not included, and the user does not pick yes/no, HTTP_POST_VARS does not include this radio group?
Cheers
TG