Hello.
When a radio button value is not required and is not selected, the $_POST var ignores its existence unlike text boxes that are left empty.
How to get at least a '' (empty but exists) value so that the radio button var goes along for the ride when the $_POST array is constructed BUT with one catch:
I would like to NOT use PHP on the form to accomplish this. I'd like the form to be just the normal HTML <input type='radio' name='rad' value=?????> whereby maybe there can be a hidden default value if the radio button is not selected(?).
Thanks.