Hey,
is it possible to upload mutiple files from an file input with multiple attribute?
I've tried it like this:
**
$upload->from('file1');
$upload->from('file2');
$upload->from('file3');
$upload->from('file4');
**
but the library keeps uploading just one single file.