Reply to Re: Capturing xforms standard input via PHP?
Posted by Denis on 06/06/06 17:02
Tim Van Wassenhove wrote:
>
> The last time i tried to gather (unmodified) XML data that was posted i
> did it with $input = file_get_contents('php://input');
Great - this works. The "secret" is using php://input rather than
php://stdin. Thanks!