this program contains two other php files, if they are not exist, your program wouldn't run.
include "../Menu/Test_menus.php";
include "../Menu/Test_footer.html";
check these files
../ means go up a folder
you can set the error reporting from your php file:
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
?>