http://bakery.cakephp.org/articles/veganista/2012/01/31/html_5_multiple_file_upload_with_cake
Pues bien, tengo mi formulario:
Código PHP:
echo $this->Form->create('FotosGaleria', array('enctype' => 'multipart/form-data'));
echo $this->Form->input('foto', array('type' => 'file', 'multiple'));
Código PHP:
foreach ($this->request->data['FotosGaleria'] as $foto){
$foto['foto']['name'];
Gracias.