Suppress PHP Errors and Warning Messages
A quick way to suppress Errors and Warning Messages within PHP:
<?php
error_reporting(E_ERROR | E_PARSE);
?>
Of course, this is only good in a pinch. Fix the errors and warnings for the longer term.
A quick way to suppress Errors and Warning Messages within PHP:
<?php
error_reporting(E_ERROR | E_PARSE);
?>
Of course, this is only good in a pinch. Fix the errors and warnings for the longer term.
Big Apple Design Group
134 West 29th Street
Third Floor
New York, NY 10001