RE: [PHP-WIN] PHP GET VARIABLES

2004-05-28 Thread Svensson, B.A.T. (HKG)
Yeah, that's it. Thanks for the correction. -Original Message- From: Jordi Canals You mean: setting register_globals = on, safe_mode is off by default. Svensson, B.A.T. (HKG) wrote: > Oh, forgett, I believe if you turn off safe mode, then you can access -- PHP Windows Mailing List (h

Re: [PHP-WIN] PHP GET VARIABLES

2004-05-27 Thread Jordi Canals
: [EMAIL PROTECTED] Sent: 27-5-2004 22:37 Subject: [PHP-WIN] PHP GET VARIABLES I'm working through a tutorial book. They are retrieving variables from a GET parameter by just referencing the variable in the script. example: echo "Region Name is " . $regionName . "\n"; ?>

RE: [PHP-WIN] PHP GET VARIABLES

2004-05-27 Thread Svensson, B.A.T. (HKG)
Oh, forgett, I believe if you turn off safe mode, then you can access them via variable names, but not really recommended from a security point of view. -Original Message- From: Svensson, B.A.T. (HKG) To: '[EMAIL PROTECTED] ' Sent: 27-5-2004 23:13 Subject: RE: [PHP-WIN] PHP GET

RE: [PHP-WIN] PHP GET VARIABLES

2004-05-27 Thread Svensson, B.A.T. (HKG)
Must be an older version of php, that featured is by defualt turned of in php nowadays. U can use $_POST['regionName'] or $_GET['regionName'] to get the values. -Original Message- From: Michael To: [EMAIL PROTECTED] Sent: 27-5-2004 22:37 Subject: [PHP-WIN] PHP GET VA

[PHP-WIN] PHP GET VARIABLES

2004-05-27 Thread Michael
I'm working through a tutorial book. They are retrieving variables from a GET parameter by just referencing the variable in the script. example: Where the variable is feed through the get URL: http://localhost/example.php?regionName=Riverland The only problem is that I'm using IIS so it doesn