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