Quote:
Originally Posted by montyauto
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');
?>