The forms API and the form element 'checkboxes'
$form['count'] = array(
'#type' => 'checkboxes',
'#options' => array(1 => "One", 2 => "Two", 3 => "Three"),
'#default_value' => array(1, 3),
);
- Add new comment
- 1163 views
The forms API and the form element 'checkboxes'
$form['count'] = array(
'#type' => 'checkboxes',
'#options' => array(1 => "One", 2 => "Two", 3 => "Three"),
'#default_value' => array(1, 3),
);