Forum Moderators: coopster
I think the config option for globals you're thinking of has to do with register globals. A GET or POST variable automatically become a variable without specifically getting like this:
$var = $_GET['var'];
If registerglobals is on than this: url/file.php?var=foo
automatically maks a variable called $var with value "foo".
This is as far as I know. Someone correct me if I'm wrong, or if there are other insecurities involved with using $GLOBALS.
For reference, $GLOBALS is talked about on the PHP reserved variable page [us2.php.net] and a good explanation of the security risk of register_globals is here [us2.php.net].