Skip to content Skip to sidebar Skip to footer

Get Data Sent By Httppost In Java To Php Script

My android app should send data to php script using HttpPost, the thing is I still can't receive any data to the php script, although I monitored that my app is sending data throug

Solution 1:

Assuming you are uploading file using enctype="multipart/form-data", You'l have to get file reference in php:

<?php$file=$_FILES['file_arg_name'];
$raw_post = file_get_contents($file['tmp_name']);
echo$raw_post;
?>

Note: If you're opening a URI with special characters, such as spaces, you need to encode the URI with urlencode(). see PHP Doc for file_get_contents() for more details

Post a Comment for "Get Data Sent By Httppost In Java To Php Script"