I am sending data using HTTP POST to my server. But in the server, I am not receiving the data. And somehow I don\'t have any way to check the data (or debug script) on clie
Write post data to a file:
file_put_contents('/tmp/postdata.txt', var_export($_POST, true));
You can try sniffing the HTTP session.
try using var_dump($_POST['name-of-field']) or var_dump($_POST)
updated:// and browse the source of the page and look for an array
You can see the content of post data inline (not for production) with:
print_r($_POST);
Or if you want to see POST, GET and COOKIE data:
print_r($_REQUEST);
If you need to log, since the client is very limited - try outputting the POST data to a file:
file_put_contents("post.log", print_r($_POST, true));