I\'m trying to create an AJAX Multi-Upload which will get all selected files within a form/file-input and upload this through my AJAX PHP Controller. For this process I\'m using
As i mentioned in my comment you could just create a new input every time a user selects a file...
Jquery example:
$(document).on('change','input[type="file"][multiple]',function(){
var $this = $(this);
$this.clone().insertAfter($this);
$this.hide();
});
You don't have to use jQuery of course, but its just the simplest way to explain what i mean.