Assuming you are wanting to include a PHP header and footer, make the PHP files like so, sticking the HTML content into a variable, and then returning that variable:
Code:
<?php
$my_header = <<<END
<html>
<body>
<!-- and so forth -->
END;
return $my_header;
?>