Reputation: 95
I am selecting 28 files and the form posts only 20 files.
So, how can I increase the number of files selected in html form?
Following is the html code for file input.
<input type="file" class="form-control template-images" name="files[]" multiple>
Upvotes: 1
Views: 28
Reputation: 36
Increase the value max-file-uploads settings in your php.ini file:
;Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
Upvotes: 1