I am using the $.ajax method and xhr2 to upload a file using the $.ajax method.
When I assing any standard object to the $.ajax parameter data, a proper non empty array is returned in $_POST (php).
JS:
data : {name:"john doe"}
PHP: print_r($_POST)
Array
(
[name] => john doe
)
However, when I assing a formData object to the parameter data in order to upload a file, an empty array is returned in $_FILES (php)
JS:
data : new FormData(document.getElementById('fileupload'))
PHP: print_r($_FILES)
Array
(
)
My html code is:
<form enctype="multipart/form-data">
<div id="myform">
<input type="file" name="fileupload" id="fileupload" />
<div id="submit">UPLOAD</div>
</div>
</form>
My jQuery code is:
$('#submit').click(function(){
var formData = new FormData(document.getElementById('fileupload'));
$.ajax({
url : "upload.php",
type: "POST",
data : formData,
xhr: function(){
myXhr = $.ajaxSettings.xhr();
return myXhr;
},
success: function(data, textStatus, jqXHR){
console.log(data);
},
cache: false,
contentType : false,
processData: false
});
});
Would you happen to know what is wrong with my code? I can't figure out why the file is not being uploaded. Thanks for your help.
Source Code: http://sw.solfin.net.co/index.php/programacion/php-y-jquery