Re: [PHP] Reading input stream of incoming request

2003-02-06 Thread Reuben D. Budiardja
On Thursday 06 February 2003 05:22 pm, Chris Shiflett wrote: > --- "Reuben D. Budiardja" <[EMAIL PROTECTED]> > > wrote: > > I browse the archive and found the following code to > > simulate a POST request using socket connection. This > > will send a request to my own server (localhost). And > > th

Re: [PHP] Reading input stream of incoming request

2003-02-06 Thread Chris Shiflett
--- "Reuben D. Budiardja" <[EMAIL PROTECTED]> wrote: > I browse the archive and found the following code to > simulate a POST request using socket connection. This > will send a request to my own server (localhost). And > then, I also have the second code (included) for > /devel/php_post.php, which

Re: [PHP] Reading input stream of incoming request

2003-02-06 Thread Reuben D. Budiardja
On Thursday 06 February 2003 03:39 pm, Kevin Stone wrote: > All data sent through a POST request is stored in the $_POST array. > > $_POST['myvar']; > > -Kevin I know that. That's not what I am asking though. OK, let me just give a more concrete examples. I browse the archive and found the foll

Re: [PHP] Reading input stream of incoming request

2003-02-06 Thread Kevin Stone
All data sent through a POST request is stored in the $_POST array. $_POST['myvar']; -Kevin - Original Message - From: "Reuben D. Budiardja" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 06, 2003 1:27 PM Subject: [PHP] Reading input stream of incoming request >