View Single Post
Old 08-12-2006, 07:29 AM  
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
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'); 
?>

Last edited by u-Bob; 08-12-2006 at 07:31 AM..
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote