most likely error reporting is turned off in the php.ini file so the error is not displaying.
add the following code at line 1 to turn on error reporting:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
once we know the error we can look into the cause.