Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy. This forum is not for asking programming related questions.
twigletmac wrote:
register_globals has been deprecated it will be removed in a later version of PHP. At some point you won't be able to just edit the php.ini and turn it on so it's probably best to get used to life without it no matter what version of PHP you have.
But if for some reason you did want the functionality of register_globals being on you can just do extract($_RESQUEST); which does basically the same thing (Apart from $PHP_SELF).