Enabling register globals for PHP scripts
Since PHP 4.1, PHP register_globals is disabled by default - to enable add the following to a .htaccess file in the directory where it's needed:
Code:
php_flag register_globals on
|
Enabling register globals for PHP scriptsSince PHP 4.1, PHP register_globals is disabled by default - to enable add the following to a .htaccess file in the directory where it's needed: Code: |