Loading...
Changes Saved.
Error Occurred!

How do I enable the PHP command \"register_globals\"?

Create a file named .htaccess, and within that file place:

php_value register_globals 1

This will make PHP function more like pre-PHP 4.2.1 distributions; however, there is a security risk associated with it and overriding variables through the URI. Don't say we didn't warn you first.



Related Articles