Re: [PHP] GET data in URL

2002-07-03 Thread Martin Clifford
PHP now comes with register_globals set to OFF by default, as far as I'm aware. You can access the variables using $_POST['variable'] and $_GET['variable'], or turn register_globals back ON. :o) Martin Jay [EMAIL PROTECTED] 07/03/02 03:46PM I just installed php 4.2.1 and i have a couple of

Re: [PHP] GET data in URL

2002-07-03 Thread Jay
Thanks! Turning on register_globals and restarting Apache solved the problem! Thanks! - Original Message - From: Martin Clifford [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 03, 2002 2:46 PM Subject: Re: [PHP] GET data in URL PHP now comes