If it is included in all your files, just add the line at the top. You can also use your choice of:
error_reporting(0); // turns off all error reporting, blank page if it crashes
error_reporting(E_ERROR); // just fatal errors
error_reporting(-1); // displays all errors, warning, etc.