[symfony-users] [Beta4] Handle file upload with array data

2011-06-15 Thread dbenjamin
Hi, I'm trying to handle multiple file uploads with a binded array. // FilesType $builder -add('photo1', 'file', array(type' = 'file')) -add('photo2', 'file', array('type' = 'file')) -add('photo3', 'file', array('type' = 'file')) ; // controller $files = array( 'photo1' = null,

Re: [symfony-users] [Beta4] Handle file upload with array data

2011-06-15 Thread Fabien Potencier
On 6/15/11 12:29 PM, dbenjamin wrote: Hi, I'm trying to handle multiple file uploads with a binded array. // FilesType $builder -add('photo1', 'file', array(type' = 'file')) -add('photo2', 'file', array('type' = 'file')) -add('photo3', 'file', array('type' = 'file')) ; // controller $files =