Hello, I have a problem... i tried to install php on IIS 5 (under W2K) everything run correctly, but the method GET doesn't seem to work.

Example :

test.php :
<?echo $id;?>

when I call this : test.php?id=test

the web page doesn't return nothing.

Why?

    Hmm - I have exactly the same problem. The rights in the IIS Service are all right and php works perfectly - except this problem!!

      +--------------------------------------------------------------------+
      | NOTE |
      | The default for register_globals is now OFF! |
      | |
      | If your application relies on register_globals being ON, you |
      | should explicitly set it to on in your php.ini file. |
      | Note that you are strongly encouraged to read |
      | http://www.php.net/manual/en/security.registerglobals.php |
      | about the implications of having register_globals set to on, and |
      | avoid using it if possible. |
      +--------------------------------------------------------------------+

        Thx it worked! Thx a lot!

          19 days later

          it work for me too!!
          i had a problem with a HTML forms so i change the regirte_globals=ON and my code works perfectly

            Write a Reply...