Hi,
I keep getting this message, I'm trying to retreive infos sent using POST.
Is that the right way to do it? The stram comes from an application so I
can't use HTTP_POST_VARS.
Is there any special configuration since I took this code from the WEB and
it's supposed to work fine.
$fp = fopen("php://stdin","r");
if ($fp){
while (!feof($fp))
$BUFFER = fgetc($fp);
$INPUT .= $BUFFER;
if ($BUFFER == "\n")
break;
}
}
I'm running PHP4.04Pl1, apache 1.3.14 on NT4
Thanks
Olivier
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]