I read that putting this code in your .htaccess file turns off register globals, am I right?
Code:php_flag register_globals off Order allow,deny Allow from all
| SitePoint Sponsor |
I read that putting this code in your .htaccess file turns off register globals, am I right?
Code:php_flag register_globals off Order allow,deny Allow from all


doesnt do anything to the register globals (and actually theres no point in you having that there).Code:Order allow,deny Allow from all
The register globals is what turns it off. This could also be done in php.ini
Bookmarks