Data from blob can be read with php://input , as in
<?php var_dump(file_get_contents('php://input'));
If you want to send multiple pieces of data using a form data object, it will look like a regular multipart / form-data column. The entire line will be available through $_POST and all drops and files through $_FILES .
function upload() { var data = new FormData(); var oReq = new XMLHttpRequest(); oReq.open("POST", 'upload.php', true); oReq.onload = function (oEvent) {
source share