I am trying to get the checked valueboxes to be stored in the database column named: checklist.
I am not sure how to get the array values to be converted in a valueform thats abled to be stored in mysql.
The code so far:
$checklist_options = array('test1' => 'test1', 'test2' =>'test2', 'test3' => 'test3');
echo $this->Form->select('checklist', $checklist_options, [
'multiple' => 'checkbox'
]);
The rest is just the form.