Yeah, I learned that from the links you gave me, thanks very much. But that still hasn't fixed it. This is what I want to do.
On my server, I can have a variable called QUERY_STRING which I set equal to something like "?user=fred", or whatever is sent by the browser.
I understand that just fine. I also know that I have to pass the contents of this variable to PHP.exe so it can be used by the scripts. I know all that. What I dont know is how to pass it. I have tried this:
php.exe H:\script.php QUERY_STRING john=paul
php.exe H:\script.php QUERY_STRING ?john=paul
php.exe H:\script.php QUERY_STRING=?john=paul.
php.exe H:\script.php QUERY_STRING "john=paul"
php.exe H:\script.php QUERY_STRING "?john=paul"
And numeruous other things like that, but they just havent worked. I know what the CGI is, but I need to know how to pass it to the script interpreter to use.
Thanks for your help, please if you have any ideas I'd love to know.