Forum Moderators: coopster
$_SERVER['PHP_SELF']
$_SERVER['DOCUMENT_ROOT']
$_POST['form_field_name']
$_GET['query_string_var']
etc...
You can change the register_globals setting in your php.ini file or in your .htaccess file.
Birdman
As of PHP 5.0.0, the long PHP predefined variable arrays may be disabled with the register_long_arrays [php.net] directive. If you used the "recommended"
php.inifile, the default installation has them turned Off. You may want to turn them back on for your test server...
; Whether or not to register the old-style input arrays, HTTP_GET_VARS
; and friends. If you're not using them, it's recommended to turn them off,
; for performance reasons.
register_long_arrays = On