I am not getting the value of all the checkboxes selected. It just gives me the value of last selected checkbox
here is the code
foreach($apps as $app){
        echo $this->Form->input('Application.id', array('type'=>'checkbox','multiple' => 'checkbox' , 'id'=>$app['Application']['description'], 'div'=>false,'type'=>'checkbox','value' => $app['Application']['description'],'label'=>$app['Application']['description']));
    }
and on submit I get the very last checkbox which is LASTCHECKBOX
object(CakeRequest) {
    params => array(
        'plugin' => null,
        'controller' => 'groups',
        'action' => 'add',
        'named' => array(),
        'pass' => array()
    )
    data => array(
        'Application' => array(
            'id' => 'LASTCHECKBOX'
        )
    )
    query => array()
    url => 'groups/add'
    base => ''
    webroot => '/'
    here => '/groups/add'
}
 
     
     
    