[PHP] Suppressing error messages

2001-08-29 Thread John Meyer
It seems to have slipped me little mind, but how do you suppress error messages? -- PHP General 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]

Re: [PHP] Suppressing error messages

2001-08-29 Thread Philip Olson
Try : a. error_reporting setting in php.ini or by calling the error_reporting function. http://www.php.net/manual/en/phpdevel-errors.php http://www.php.net/manual/en/features.error-handling.php http://www.php.net/manual/en/function.error-reporting.php b. the @