When a php page displays blank, it means a php error is occurring, but error reporting is turned of. To turn it on to see the error, add the following code at line 1:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
post back the text of the error and a copy of the page so we can begin troubleshooting the cause.