How to Enable Register Globals
From ReduxWiki
(Redirected from How to Enable register globals)
Contents |
[edit] PHP4 (DSO)
- Using an .htaccess file, the following rule will work.
php_flag register_globals On
[edit] PHP5 (CGI)
- Using a php.ini file, the following rule will work.
register_globals = On
Categories: CGI | Apache | PHP


