//A sample header file
$site_name = "PHP";
$site_email = "w@hotmail.com";
$site_path = "http://localhost/php";
?>
=$site_name;?>
PHP
print date ("F d, h:i a");
?>
//The Footer
">contact
//The Body
/tutorials.php">tutorials
//Putting It Together: Incorporating the Header, Footer, and Body
include ("header.tpl");
include ("index_body.tpl");
include ("footer.tpl");
?>