Quote:
|
Originally Posted by spacedog
Better yet, if I rename index.php to body.php, then is there a way I can include the 3 parts ie include header.htm & body.php & footer.inc.php & name this page index.php & when visited it displays 1st header, then body.php & last footer?
|
Code:
<?php
include('header.htm');
include('body.php');
include('footer.inc.php');
?>
btw: your header.htm is probably static html so you can gain some speed by using:
Code:
<?php
readfile('header.htm');
include('body.php');
include('footer.inc.php');
?>