Hi,
I installed PHP on my Windows 2000 box running IIS. I used the binary downloaded from php.net and I did an install without touching any of the settings. Now, I have problems when using URL variables.
If I do something like
<A HREF="otherpage.php?myVar=test">Link</A>
I cannot use the myVar variable on otherpage.php. The _GET["myVar"] variable is set correctly (I used phpinfo() to double check) but if I try to display $myVar or use it in an IF statement then it's simply ignored.
Is there something I'm supposed to do to be able to use URL variables?
I just started looking at PHP soplease forgive my ignorance.
Thanks for your help
B.