I have a name list which i need to implement in "checkboxes" and I need to insert those names that are checked, into a table, in SQL through CakePHP. Someone suggested to use:
$this->Form->input('Members', array('multiple' => 'checkbox'));
I am not sure what it does.
Here I just give a demonstrate to you how to save values of multiple check-box. //add.ctp for example
// In controller
I hope that will be help you.