Quick PHP Debugging Jan 18, 2018 Put this on top of your script and easily see the errors and warnings. <?php error_reporting(E_ALL ^ E_DEPRECATED); ini_set('error_reporting', E_ALL ^ E_DEPRECATED); ini_set('display_startup_errors', 1); ini_set('display_errors', 1);