Menu

#1 variables and register_globals=off

open
nobody
None
5
2002-10-06
2002-10-06
No

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")*/;}

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.