Hello with Includes Code
Code Follows:
<?php
function printheader($title)
{
print<<<WEBPAGEHEADER
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles2.css" type="text/css">
<title>$title</title>
</head>
<body>
<div id='page'>
<div id='banner'><h2>$title</h2></div>
<div id='holder'>
<div id='content'>
WEBPAGEHEADER;
}
function printfooter($notes, $showIncludeCode)
{
print<<<FOOTERPART1
<div class='clear'> </div>
</div> <!-- end holder -->
<hr />
<div id="footer">
<p>Copyright ©
FOOTERPART1;
echo(date("Y"));
print<<<FOOTERPART2
Laura Shears</p>
<p>$notes </p>
</div> <!-- end footer -->
</div><!-- end page -->
<span>Code Follows:</span>
<hr/>
FOOTERPART2;
if ($showIncludeCode)
echo(highlight_file(__FILE__));
PRINT<<<FOOTERPART3
</body>
</html>
FOOTERPART3;
}
?>
1