Re: [PHP-WIN] hello there.

2002-12-06 Thread Rico Derks
Hi Crhistopher, In the newer versions of PHP. Register_globals is switched off. You can switch it on again in PHP.INI. If I'am correct, they switched it off due to security reasons. Depending how important that is for you, you can switch it on. Greetings, RICO. At 09:02 PM 12/5/2002 -0600, ch

Re: [PHP-WIN] hello there.

2002-12-06 Thread Stephen Edmonds
It's called 'Register Globals' Basically, rather than having $DOCUMENT_ROOT, all the preset variables are stored in 'Super arrays'. This means you will now have to use $_SERVER["DOCUMENT_ROOT"] For more information: http://www.php.net/manual/en/security.registerglobals.php Use phpinfo(32); to li