View Single Post
Old 09-14-2007, 10:05 AM   #5 (permalink)
parusa619
Googler
 
parusa619's Avatar
 
Join Date: Jan 2007
Location: In my sweetie's heart
Posts: 68
Thanks: 0
Thanked 0 Times in 0 Posts
parusa619 is on a distinguished road
Send a message via Yahoo to parusa619
Quote:
Originally Posted by montyauto View Post
Is it possible to include a header and footer file using HTML?

I have my file as a .html and need to be able to include the HTML for the header and footer.

Anyone know how I can do this?
Yes, possible, for now, you can include any files using php codes in HTML. Put this in your .htaccess

PHP Code:
RemoveHandler .html .htm
AddType application
/x-httpd-php .php .htm .html 
Then after that, put your codes in header.txt and footer.txt and do this in each and every page you have
PHP Code:
 <?
include('header.txt');
?>
<!-- content -->
<?
 
include('footer.txt');
 
?>
parusa619 is offline   Reply With Quote