Enable PHP with Register Globals Turned "ON"


Enabling register_globals in Linux server environment is rather straight forward.

All you need to do is :

1. Edit the .htaccess file in the public_html folder.

2. Add the following lines into the .htaccess file:

php_flag register_globals on

3. Save the .htaccess file.