Leser: 1
2 Einträge, 1 Seite |
<input type="checkbox" name="features[]" .........>
Quote\n\ncheckbox_group(-name=>'words',
-values=>['eenie','meenie','minie','moe'],
-defaults=>['eenie','minie']);
When the form is processed, all checked boxes will be returned as a list under the parameter name 'group_name'. The values of the ``on'' checkboxes can be retrieved with:
@turned_on = $query->param('group_name');
2 Einträge, 1 Seite |