You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.