To display error messages caused by your PHP script you can include these lines of code:
ini_set('display_errors',1);
error_reporting(E_ALL);
Another way to do it is to edit your php.ini file and include this option:
error_reporting = E_ALL
To turn error reporting off for a single document, include this line:
error_reporting(0);
Read more in depth about different types of error reporting available [view]
Help Out! Have a better way... share your code here... or view other's suggestions!

