![]() |
|
|
+ Search |
![]()
|
Feb 4th, 2005 00:17
Michael Phipps, stef guth, http://www.php.net/manual/en/wrappers.php.php
php://input allows you to read raw POST data. It is a less memory
intensive alternative to $HTTP_RAW_POST_DATA and does not need any
special php.ini directives.
Example use:
$httprawpostdata = file_get_contents("php://input");
Try it - it works!