<?
// template.inc
$header=<<<EOF
<head>
<title>Here's the header</title>
</head>
<body>
blah blah blah
EOF;
$footer=<<<EOF
copyright stuff etc
</body>
EOF;
?>
<? //page.php
$page_content="blah blah blah de blah blah blah";
include("template.php");
print($header);
print($page_content);
print($footer);
?>
and when you've finished messing around with all that check out the PHPLib template class.
Good luck
Nick