Re: [PHP-WIN] Uninitialized Variables

2001-03-15 Thread Phil Driscoll
Florian wrote: >error_reporting = E_ALL & ~E_NOTICE Better yet, leave your warning levels as they are and don't have uninitialised variables. They are a *bad* thing. Aside from general sloppiness, they are a security breach waiting to happen. What if someone initialises one to a dangerous value b

Re: [PHP-WIN] Uninitialized Variables

2001-03-15 Thread Florian Poizac
in your php.ini you certainly have error_reporting = E_ALL this line active put a ; before and you can use this one instead error_reporting = E_ALL & ~E_NOTICE Cheers Florian - Original Message - From: Dwight Sparling <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March

RE: [PHP-WIN] Uninitialized Variables

2001-03-15 Thread Darvin Andrioli
You may use the function isset. Try this code: if (!isset($id)) { // variable not set } Regards Darvin -Original Message- From: Dwight Sparling [SMTP:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 3:44 AM To: [EMAIL PROTECTED] Subject:[PHP-WIN]

Re: [PHP-WIN] Uninitialized Variables

2001-03-14 Thread Olivier Hubert
What exactly is the error message? I know this sounds stupid, but are you sure it isn't just a warning? By default, PHP will output all warnings and errors to standard output (e.g. the browser). Olivier >Can PHP deal with variables that are not initialized? It is kicking out an >error when it