Re: [PHP-WIN] RE: Sending data to a script from a form

2002-10-07 Thread Luis Ferro
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

[PHP-WIN] RE: Sending data to a script from a form

2002-10-07 Thread Uttam
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