Checkbox instead of dropdown in CakePHP
echo $this->Form->input(‘publication_id’);will output If we want check boxes instead of drop down, all we have to do is echo $this->Form->select(‘publication_id’, $publications, array( ‘multiple’ => ‘checkbox’));