I have a php script that creates a template page everything was Ok until I decided I should have a header page and include that into the script so whenever I want to change anything I can just change the header file, my problem now is instead of getting header page I get <?php require('/Header/header.php'); ?> at the beginning of every page and it doesn't get parsed.
print ("<?php require('/Header/header.php'); ?>\n");
echo "<BR><BR><BR><BR><BR><BR>";
echo "<H2>$title $dir</H2>\n";
echo "<table width='80%' border='0' align='center' cellpadding='2' cellspacing='2' bgcolor='#EBEBEB' class='Tblborder'> \n";
echo "<TR bgcolor='#FFFFFF'>\n";
echo "<TD bgcolor='#FFFFFF' WIDTH='30'> </TD>\n";
echo "<TD><FONT COLOR=0000FF>Name</FONT></TD>\n";
echo "<TD ALIGN=RIGHT WIDTH='120'><FONT COLOR=0000FF>Size   </FONT></TD>\n";
echo "<TD WIDTH='200'><FONT COLOR=0000FF>Description</FONT></TD>\n";
echo "</TR>\n";
echo "</TABLE>\n";
echo "<BR>";
echo "<TABLE width='80%' border='0' align='center' cellpadding='2' cellspacing='2' bgcolor='#EBEBEB' class='Tblborder'>\n";