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