a blank page means there is a php error but error reporting is turned off.
add the following code at line 1 of the page to turn error reporting on:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
once we know what the error is, we can troubleshoot the cause.