php - Cakephp Multiple File Upload -


i trying create multiple file upload using cakephp. however, bumped problem wherein not enable "multiple" functionality of built in upload function of cake.

here's got:

<?php     echo $this->form->create('cmt', array('type'=>'file','multiple'=>'multiple'));     echo $this->form->file('file');     echo $this->form->submit('upload');     echo $this->form->end();  ?> 

my mistake lies in line of code:

echo $this->form->create('cmt', array('type'=>'file','multiple'=>'multiple')); 

upon research, able right 1 , modified code this:

<?php     echo $this->form->create('cmt');     echo $this->form->file('file', array('type'=>'file','multiple'=>'multiple'));     echo $this->form->submit('upload');     echo $this->form->end();  ?> 

got working :)


Comments