I am using the the jQuery plugin https://github.com/blueimp/jQuery-File-Upload to up load files. I just wanna use the upload button to show the selected files and only upload the files when the form is submitted. following is my code :
<form id="myform" method="post" enctype="multipart/form-data">
<span class="btn btn-success btn-mini fileinput-button">
<i class="icon-plus icon-white"></i>
<span>Add files</span>
<input id="fileupload" type="file" name="files[]" multiple>
<button type="submit" id="start_uploads">Start uploads</button>
</span>
</form>
I can create the list using the following code :
$('#fileupload').fileupload({
dataType: 'json',
add: function (e, data) {
$.each(data.files, function (index, file) {
//alert('Added file: ' + file.name);
$('<li/>').text(file.name).appendTo('#fileList');
});
},
});
But when I submit the form I don get anything in $_FILES or var_dump(files); Can anybody please help me out of what am I missing and how I can accomplish this ? One thing to mention, if I don use the js code for the listing then do get the $_FILES variable having all the selected files.