On Wednesday 16 January 2002 3:04 am, Robert Abbate wrote: > What's up with the Windows versions for PHP? They keep saying that all > variables must be defined instead of allowing them to be defined when > necessary. Is there a way to disable this warning in Windows setup?
Like all versions of PHP, it's just telling you that the variables should be defined before you use them. You can get rid of the warning messages by changing the error_reporting level in php.ini, BUT you should only do this on a production machine, not your development machine. Each of those warning messages flags up a potential security hole in your code. Your best bet is to fix the code! Cheers -- Phil Driscoll -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]