The error_reporting command specifies which errors are reported to the programmer. Here are various ways to use error_reporting: <%?php // Disable all error reporting error_reporting(0); // Simple execution errors error_reporting(E_ERROR | E_WARNING | E_PARSE); //...