CAKE PHP Checkbox instead of dropdown in CakePHP sugatshr 0 Comments April 29, 2014 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’)); Post Views: 483