[PHP] Windows PHP vs Linux PHP

2003-01-15 Thread Beauford.2002
Hi, I asked previously about the differences between the two and the concensus was any differences are in the operating systems themselves and not with PHP. Knowing this, how do I get rid of these errors that keep coming up in Windows, that don't in Linux. One specific one is Notice: Undefined

Re: [PHP] Windows PHP vs Linux PHP

2003-01-15 Thread Jeff Lewis
] Windows PHP vs Linux PHP Hi, I asked previously about the differences between the two and the concensus was any differences are in the operating systems themselves and not with PHP. Knowing this, how do I get rid of these errors that keep coming up in Windows, that don't in Linux. One

RE: [PHP] Windows PHP vs Linux PHP

2003-01-15 Thread Matt Schroebel
-Original Message- From: Jeff Lewis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 1:00 PM To: Beauford.2002; PHP General Subject: Re: [PHP] Windows PHP vs Linux PHP Set your php.ini file and error reporting as such: error_reporting = E_ALL ~E_NOTICE

Re: [PHP] Windows PHP vs Linux PHP

2003-01-15 Thread 1LT John W. Holmes
Set your php.ini file and error reporting as such: error_reporting = E_ALL ~E_NOTICE Or initialize your variables before using them ... especially true if register_globals is on. Yeah, that's the best recommendation. Especially if you plan on distributing your code for others to use,

Re: [PHP] Windows PHP vs Linux PHP

2003-01-15 Thread Jim Lucas
PHP vs Linux PHP Hi, I asked previously about the differences between the two and the concensus was any differences are in the operating systems themselves and not with PHP. Knowing this, how do I get rid of these errors that keep coming up in Windows, that don't in Linux. One specific one