PHP DISPLAYING ERRORS
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
By using above code, you can manually show / display errors in your php script, irrespective of your server configuration
PHP HIDE ERRORS
<?php
ini_set('display_errors', 0);
By using above code, you can manually hide errors in your php script, irrespective of your server configuration.
ALTERNATE TITLES