RE: [PHP] arg parsing

2002-11-08 Thread John W. Holmes
Look at register_globals in your php.ini. Your variables are being passed, it's just that with register_globals OFF, you reference it as $_GET['action'] and with it on, you reference it as just $action. ---John Holmes... > -Original Message- > From: phil [mailto:phil@;localwebpages.co.uk

Re: [PHP] arg parsing

2002-11-08 Thread Marco Tabini
Well, it's probably the fifth time it's asked today :-) The setting is register_globals Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmer Come visit us at http://www.phparch.com! --- Begin Message --- Ap