Possible Duplicate:
PHP global in functions
Using something like this worries me:
<? global $config; ?>
Let's say I store my DB connection and the salt I use for strings in my $config global.
Is there any chance that by now using:
<? global $config; ?>
I'll be having problems in the future?
If so, how could this be exploited?