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
You mean: setting register_globals = on, safe_mode is off by default. Just setting register_globals = on you get the funtionally bellow wich is NO recommended for security reasons. Highly recommended to read this variables always from $_GET and $_POST global arrays, check and filter the values r

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 VARIABLES I'm working th