For security reasons, and to enforce good coding and script design, on all shared-hosting (virtual hosting) servers, the PHP setting register_globals = Off
If youreallyrequire register_globals = On which isNOT ADVISED, you should instead set it to on in your local .htaccess or fix the poor coding in your application/script(s) that require the setting On.
The register_globals directive isoffby default as of PHP 4.2.0 for a reason !
As you’re still reading you obvioulsy feel you muct have the seeting on so …
create (or modify) your .htaccess file in the appropriate web directory with:
php_value register_globals 1
For more information, please seehttp://www.php.net/security.registerglobals
To learn the correct methods for using external variables please seehttp://www.php.net/variables.external