Re: [PHP] Help, Perl can, Php can't !

2001-02-27 Thread Chris
Strange, phpinfo is showing this: POST /members/plurp.asp HTTP/1.1 and a content length of 16, which is exactly right forlah=sd&dta=test but I can't seem to get to the actual data. Is there a way to see the acutal content data, like you can with perl: read(STDIN, $buffer, $ENV{'CONTENT_LENGTH

Re: [PHP] Help, Perl can, Php can't !

2001-02-26 Thread Chris
Strange, phpinfo is showing this: POST /members/plurp.asp HTTP/1.1 and a content length of 16, which is exactly right forlah=sd&dta=test but I can't seem to get to the actual data. Is there a way to see the acutal content data, like you can with perl: read(STDIN, $buffer, $ENV{'CONTENT_LENGTH

Re: [PHP] Help, Perl can, Php can't !

2001-02-26 Thread Chris
Unfortuanetly, phpinfo is not telling me anything. It returns all the normal info, but it still seems to act like there was no data posted. > Put phpinfo() in the script to see what is going on.. > > > On Monday, 26 February 2001, at 09:12:11 (-0800), > Chris wrote: > > > > > I am trying to pos

Re: [PHP] Help, Perl can, Php can't !

2001-02-26 Thread David Raufeisen
Put phpinfo() in the script to see what is going on.. On Monday, 26 February 2001, at 09:12:11 (-0800), Chris wrote: > > I am trying to post some info to my php script using the microsoft internet control: > > strurl = http://www.myserver.com/test.asp > strdata = "lah=sd&dta=test >

[PHP] Help, Perl can, Php can't !

2001-02-26 Thread Chris
I am trying to post some info to my php script using the microsoft internet control: strurl = http://www.myserver.com/test.asp strdata = "lah=sd&dta=test Inet1.Execute strurl, "POST", strdata PHP returns HTTP_POST_VARS as being empty. Yet, if I use PERL, I can read the posted info j