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
*** This is the code for /devel/php_post.php > > - 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 r

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

[PHP] Reading input stream of incoming request

2003-02-06 Thread Reuben D. Budiardja
Hi, How do I read an input stream from incoming request in PHP? The incoming input stream is actually an name=value pair of a POST request method from a client. The reason I ask: I am using Apache + PHP as the backend for creating client-server scheme. The client is a MIDlet apps (J2ME: http