Re: [PHP] POST form header

2004-03-04 Thread Raditha Dissanayake
Doesn't $GLOBALS['HTTP_RAW_POST_DATA'] have this info? it should but it does not!. It only gets populated when the encoding is unknown. I think Chris has already given a good suggestion. An alternative would be to POST to a perl script and just echo the input from stdin to stdout. -- Radith

Re: [PHP] POST form header

2004-03-03 Thread Chris Shiflett
--- Richard Davey <[EMAIL PROTECTED]> wrote: > Just a quick question - but does anyone know where I could find an > example of a POST form header? As in all of the raw HTTP headers that > are sent from the browser to the server when it submits a form via > POST? This function sends a POST manually

Re: [PHP] POST form header

2004-03-03 Thread Brian V Bonini
On Wed, 2004-03-03 at 08:22, Richard Davey wrote: > Hi all, > > Just a quick question - but does anyone know where I could find an > example of a POST form header? As in all of the raw HTTP headers that > are sent from the browser to the server when it submits a form via > POST? If it's possible t

[PHP] POST form header

2004-03-03 Thread Richard Davey
Hi all, Just a quick question - but does anyone know where I could find an example of a POST form header? As in all of the raw HTTP headers that are sent from the browser to the server when it submits a form via POST? If it's possible to extract this information via a PHP function then I'll be hap