Hi Eric,
I'm not sure, but one problem with these radio-buttons is, that you entered the full description text again as option value. You are using " an '' and many special characters in the option value and that does break the form. For example the source code for one option looks like that:
Code:
<input id="field19_3" class=" inputbox visCSSbot5 " type="radio" aria-labelledby="ad-sizelbl ad-sizelbl_3" ($250)"="" color="" full="" cover,="" front="" or="" back="" inside="" 3.75"),="" x="" value="1/2 page (4.5" name="ad-size">
So when a user submits the option the submitted value is
Code:
1/2 page (4.5" name="ad-size
but the original value, which you entered in the field configuration and against which the php validation checks is
Code:
1/2 page (4.5" x 3.75"), inside back or front cover, full color ($250)
This is, why the php validation fails and the error message is send.
So please change the texts of your option values and avoid the special characters (at least single or double quotes).
I think I have to add a validation in the field configuration, to avoid at least special characters like " in the option value.
Regards,
Aicha