You can use $_REQUEST too, it has $_GET, $_POST and $_COOKIES.

-William


El s?, 03-04-2004 a las 11:30, Larry E.Ullman escribió:
> > When using a link like xxx.proceed.php?language=gbr
> > the 'proceed.php' script does not receive any $language variable.
> >
> > Does someone know how to get it run?
> 
> This is a register_globals issue. Refer to $_GET['language'] instead of 
> just language. Or, at the top of your script, add
> $language = $_GET['language'];
> and you shouldn't have to change anything else.
> 
> See the manual for $_GET and $_POST for more information.
> 
> Larry

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

Reply via email to