Hey,
I will play with POST data that the client has send. But why? $request_body is empty (of course) and
echo_read_request_body;
echo $request_body;
prints the POST data, but
echo_read_request_body;
if ( $request_body ~ "(.*)" ) {
echo $1;
}
return an empty string. Same game with $echo_request_body
Any idea?
Thanks.