Web Hosting Talk







View Full Version : need help with php template


jellyboy12
01-04-2005, 09:42 PM
hi i need help with creating my template with ssi
I mean including the header and footer and blocks and content in php here is my template msmnetwork.com/techwork/index.php
and i mean it to be in pieces so i update the other pages easily
Can anyone here help please?

saghir69
01-05-2005, 05:41 AM
<?php


include 'header.php';


echo 'the content';


include 'footer.php';
?>


just chop your main file into peices, put the header html into a file call it header.php or whatever then just include it from all your files.

just try it u'll get used to it.