This behavior happens because in the php.ini there is an option
"register_globals" which is turned off (as it should, as security
advises)... Keep in mind that in most host providers, the stated option
is turned on...
As a safe and universal way to access vars, don't assume anything
regarding
use $_GET['user'] and $_GET['address']...
output.php
$_GET['user']\n\n";
echo "your address is:\n\n$_GET['address']";
?>
regds,
-Original Message-
From: R Strang [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 07, 2002 04:12
To: [EMAIL PR