RE: [PHP] Trouble reading POST data that is not associated with a value.

2003-06-27 Thread Moore, Christie
D] Subject: [PHP] Trouble reading POST data that is not associated with a value. Hi. I'm currently developing a system that accepts http requests containing xml data. A third-party application delivers the xml data in the post part of the http request. The post data is however not asso

Re: [PHP] Trouble reading POST data that is not associated with a value.

2003-06-27 Thread Wendell Brown
On Fri, 27 Jun 2003 21:21:34 +0200, Marcus Akre wrote: >However the $_SERVER["CONTENT_LENGTH"] is between 300 and 400 bytes. The >data is there, but how can i access it? Maybe, $_SERVER["HTTP_RAW_POST_DATA"] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

[PHP] Trouble reading POST data that is not associated with a value.

2003-06-27 Thread Marcus Akre
Hi. I'm currently developing a system that accepts http requests containing xml data. A third-party application delivers the xml data in the post part of the http request. The post data is however not associated with any name. So it cannot be indexed as normal with $_POST["key"]. I've tried all