Hello World
 

Code Follows:
<?php 
  
include "../includes/headerAndFooter.inc"
  
printheader('Hello with Main Page Code');
  echo(
"Hello World"); 

  
printfooter('<p>I added a notes variable to my printfooter function so that all of my project that use the same includes files can have customized notes specific to each individual project. This paragraph is the note for this project.</p>'false);

echo(
highlight_file(__FILE__)); 

?>
1