Re: [PHP] Hide Warnings

2006-11-18 Thread Stein Ivar Johnsen
_NOTICE > // This is the default value set in php.ini > error_reporting(E_ALL ^ E_NOTICE); > > // Report all PHP errors (bitwise 63 may be used in PHP 3) > error_reporting(E_ALL); > > // Same as error_reporting(E_ALL); > ini_set('error_reporting', E_ALL); > >

Re: [PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
Sorry, I have no access to my ISP's php.ini file. I need to turn off warnings in the php script code? -- Regards sijo http://www.dyg.no "clive" <[EMAIL PROTECTED]> skrev i melding news:[EMAIL PROTECTED] > Stein Ivar Johnsen wrote: >> Hi.. >> >> H

Re: [PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
pt E_NOTICE > // This is the default value set in php.ini > error_reporting(E_ALL ^ E_NOTICE); > > // Report all PHP errors (bitwise 63 may be used in PHP 3) > error_reporting(E_ALL); > > // Same as error_reporting(E_ALL); > ini_set('error_reporting', E_ALL); > >

[PHP] Hide Warnings

2006-11-17 Thread Stein Ivar Johnsen
Hi.. How can I hide Warning messages so they are not shown on screen..: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass