[thelist] Php 4.2.2 IIS 5 and passing variables

fstorr fffrancis at fstorr.demon.co.uk
Tue Jul 23 13:00:01 CDT 2002


Newer versions of PHP set register_globals to "Off" by default. This
means PHP will no longer automatically transfer all POST and GET
name-value pairs into local script variables. The prefered method now is
to reference $_POST["foo"] and $_GET["foo"]. You can override this
default behavior by editing your php.ini file and changing
"register_globals = Off" to "register_globals = On".

____________________

Thanks - that solved it.

Another reason to love this list!

Cheers

Francis





More information about the thelist mailing list