-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple File Uploads #3
Comments
Thanks, excellent question! Uploading multiple files with separate file inputs, i.e. two or more HTML elements with different But uploading multiple files with a single file input, i.e. one HTML element whose In order to add support for this, we’ll have to modify the class Perhaps that should even be a separate new method, e.g. |
As a workaround, I use the code below (
|
@nssnl Thanks a lot for sharing your solution! I had never thought about manipulating |
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.
The text was updated successfully, but these errors were encountered: