this is what i have in process.php
parse_str(file_get_contents(\"php://input\"),$upload_data);
if (isset($upload_data)) {
print_r($upload_data);
exit;
}
>
The only way in your situation is to parse raw request manually (look at this gist)
parse_str(file_get_contents("php://input"), $_PUT);