[PHP] Reading the content.

2001-07-11 Thread Gustavo Carreno
Hi tere, Imagine that someone does the following post: ---8- POST /bla.php HTTP/1.0 host: bla.com content-type: text/xml content-length: ## ?xml blabla? bla /bla ---8- With what function, variable, server variable or whatever do I

Re: [PHP] Reading the content.

2001-07-11 Thread Chris Lambert - WhiteCrown Networks
AM Subject: [PHP] Reading the content. | Hi tere, | | Imagine that someone does the following post: | | ---8- | POST /bla.php HTTP/1.0 | host: bla.com | content-type: text/xml | content-length: ## | | ?xml blabla? | bla | /bla | ---8

Re: [PHP] Reading the content.

2001-07-11 Thread Gustavo Carreno
Chris Lambert - Whitecrown Networks [EMAIL PROTECTED] wrote in message 000b01c109fc$1857cb60$6401a8c0@server">news:000b01c109fc$1857cb60$6401a8c0@server... As far as I know, you don't. :-( And as far as you know, you are wrong :)) If there is no variables on the post the whole content of

RE: [PHP] Reading the content.

2001-07-11 Thread Bruin, Bolke de
, 2001 4:23 PM Aan: [EMAIL PROTECTED] Onderwerp: Re: [PHP] Reading the content. Chris Lambert - Whitecrown Networks [EMAIL PROTECTED] wrote in message 000b01c109fc$1857cb60$6401a8c0@server">news:000b01c109fc$1857cb60$6401a8c0@server... As far as I know, you don't. :-( And as far as you k

Re: [PHP] Reading the content.

2001-07-11 Thread Chris Lambert - WhiteCrown Networks
Carreno [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 11, 2001 10:22 AM Subject: Re: [PHP] Reading the content. | Chris Lambert - Whitecrown Networks [EMAIL PROTECTED] wrote in | message 000b01c109fc$1857cb60$6401a8c0@server">news:000b01c109fc$1857cb60$6401a8c0@server... |

Re: [PHP] Reading the content.

2001-07-11 Thread Gustavo Carreno
Are you sure? I tested posting to a script which simply did a print_r($GLOBAL), and didn't see the posted data listed. Yeaps, if the content-type is known the $HTTP_RAW_POST_DATA is empty and does not show on the $GLOBALS. Try this C program in Linux and you'll get surprised: --