when a page displays blank in the browser, it is a sign that a php error is occurring but error reporting is turned off.
Add the following code to your page at line 1 to turn error reporting on:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
you may need to view source on the page in the browser to see the error.