RE: [PHP] $_SESSION[] and register_globals=on

2002-09-27 Thread John Holmes
My IP informed me that they have register_globals=on in their php.ini. Is this going to cause problems with my scripts that were written using $_POST, $_SESSION, etc? If you can turn it off via, .htaccess, you'd be better. The scripts will run fine with $_POST or whatever, but realize your

Re: [PHP] $_SESSION[] and register_globals=on

2002-09-27 Thread Andre Dubuc
Thanks John, I had been debating which IP Iwould use for my site. With the information you've provided, I will use the one that has register_globals=off. One re-write of all my code is enough. Besides, the purpose of the default 'off' behavior is precisely why I'm using $_SESSION's anyway.