I have a php script inside a form which reads data from a MySQL DB and creates a group of checkboxes according to them. It all worked fine with V3 but now I got two issues:
1.) I need to check if there is at least one box checked, how can I do that? Assigning any special class?
2.) If more then one box is checked it does not parse these values into an email or confirmation page.
-->
-->
Many thanks and regards
Jakob
1.) I need to check if there is at least one box checked, how can I do that? Assigning any special class?
2.) If more then one box is checked it does not parse these values into an email or confirmation page.
-->
<input type="radio" name="seminarauswahl" ...
leads to just one value-->
<input type="radio" name="seminarauswahl[]" ...
leads to an array output but not as separated values.Many thanks and regards
Jakob