Ok so i have the form setup perfect but only the first upload is coming through. When i debug the PHP $_FILES i get this
Array (
[download] => Array (
[name] => Array ( [0] => 01 something.mp3 [1] => 12 Alone.mp3 )
[type] => Array ( [0] => audio/mpeg [1] => )
[tmp_name] => Array ( [0] => /tmp/phpqRkcOG [1] => )
[error] => Array ( [0] => 0 [1] => 1 )
[size] => Array ( [0] => 514828 [1] => 0 ) ) )
As you can see I am not getting the second upload .....in the tmp directory
I was thinking of it was max_file_uploads
so i added this on top of my form
ini_set('max_file_uploads','20');
but still nothing....any ideas