Hello World
 

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'>&nbsp;</div>
   </div>  <!-- end holder  -->
   <hr />
   <div id="footer">
    <p>Copyright &copy; 
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 <?php 
  
include "../includes/headerAndFooter.inc"
  
printheader('Hello with Includes Code');
  echo(
"Hello World"); 
  
printfooter('This time code is included for the include file as well.'true);
 
 echo(
highlight_file(__FILE__));
?>
1