PHP Scripting
How do I turn global variables on or off for the server in PHP?
You need to create a .htaccess file in your web space environment and insert one of the following
php_flag register_globals on (to turn on) php_flag register_globals off (to turn off)
This will dictate whether they are on or off.
<< Back
|