I'll be more specific.
I have a script.php like
<?
echo "the var in get is ".$_GET("var");
?>
and calling from w2k
SET QUERY_STRING=var=43
PHP.EXE script.php
IT WORKS PERFECTLY and outputs "the var in get is 43"
now I'm trying to achieve the same result with a script.php like
<?
echo "the var in post is ".$_POST("var");
?>
but I dunno how to call the script from w2k.... what enviroment variables do I have to use??? I understand
CONTENT_LENGHT=number of bytes in post and then the post data goes in stdin...
but how on earth do I put the data in stdin???
PLEASE HELP