How to turn on error reporting in PHP
If you are on a server that does not show you your PHP script's errors (you are getting a blank white page), paste this code at the top of your script:
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 'On');
ini_set('display_startup_errors', 'On');