Re: [PHP] grabbing variables from the query string

2001-04-28 Thread Philip Olson
if register_globals setting is on (in php.ini) then $foo will be available, otherwise use the predefined variable HTTP_GET_VARS : index.php?foo=blah print $foo; print $HTTP_GET_VARS['foo']; http://www.php.net/manual/en/language.variables.predefined.php http://www.php.net/manual/en

RE: [PHP] grabbing variables from the query string

2001-04-28 Thread PHPBeginner.com
try: echo $fName; they are loaded in the page automatically. or.. loop HTTP_GET_VAR Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Jamie Saunders [mailto:[EMAIL PROTECTED