Quick PHP Debugging

Thu Jan 18 2018 02:00:00 GMT+0000 (Coordinated Universal Time)

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);