> I just upgraded to PHP 4.2.2 and am trying to make my sites work with
 > register_globals turned OFF. I notice, however, that with 
 > register_globals turned off any variables I pass via the URL don't
seem to be 
 > recognized by the script it was passed to.

 > I thought register_globals only affected session, cookie and get type
 > variables? Why is PHP ignoring the variables passed via the URL?

Variables passed via the URL are GET variables.  In v4.2.2 you can use
$_GET['variable_name'] to access them.

CYA, Dave




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to