HI
Is this what you mean?
HeaderFooter.php
<?
function header() {
?>
<head></head>
<body>
<h2>FOR OFFICIAL USE ONLY</h2>
<?
} // header() ends here
function footer() {
?>
<h2>FOR OFFICIAL USE ONLY</h2>
</body>
<?
} // footer() ends here
?>
YourPrintPage.php
<?
header();
// do your stuff here
footer();
?>
Good luck
Nick