variables and register_globals=off
Status: Inactive
Brought to you by:
anzuhan
Global variables not recognized if register_globals =
off in php.ini
One simple solution to fix:
if (!empty($HTTP_GET_VARS)) while(list($iname, $value)
= each($HTTP_GET_VARS)){ $$iname = $value;
/*print("name=$iname value=$value\n")*/;}
if (!empty($HTTP_POST_VARS)) while(list($iname, $value)
= each($HTTP_POST_VARS)){ $$iname = $value;
/*print("name=$iname value=$value\n")*/;}