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 client side. But on the client side I am getting HTTP 200, meaning data is sent. Also I can see the connection and data sending was successful. However, log in the server doesn't contain the data (only the number of bytes).
How can I log the raw POST data that was sent to the server?
FYI, here the client is an embedded device with very limited capability, so this is a problem. I can not check "print_r" or "echo".