I am trying to create a multiple file upload using cakephp. However, I bumped into a problem wherein I could not enable the "multiple" functionality of the built in upload function of cake.
Here's what I 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();
?>