View Full Version : HTML Footer


jasonlee
01-21-2005, 06:25 PM
Does anyone know of a good tutorial for calling html footers?

Paz
01-22-2005, 02:13 PM
Hi Jason,

no one has answered.... maybe it's me - but I really don't understand your question.


Can you tell us a little bit more about what you want to know?


Cheers,
Paz.

jocelyn
01-22-2005, 02:52 PM
My guess is you have to look for SSI or Server Side Include to make a footer that you can update on the whole site by just modifiying the included file.

deregular
02-12-2005, 06:22 PM
you can edit webserver settings so that html files are treated like shtml files.
run a search for 'ssi' or 'shtml', you should find some tutorials on how to use server side includes.
heres one.

http://httpd.apache.org/docs/howto/ssi.html

vectorgraphx
07-11-2005, 10:06 AM
<!--#include virtual="/footer.html" --> should work just fine, as long as your server supports SSI.

jlknauff
07-11-2005, 01:41 PM
You can also use php fairly easily to do that

MKJ
08-11-2005, 04:18 PM
<?php include("footer.htm");?>

The above works as long as your file is a .php file. Can be used to pull in headers or footers.

MKJ
CSS Site (http://sites-4u.com)

blackstar
05-23-2006, 01:20 PM
[QUOTE=MKJ]<?php include("footer.htm");?>

The above works as long as your file is a .php file.[/QUOTE]
you could also set the server to parse HTML files as PHP.. :cool:

seopool
06-04-2006, 11:33 PM
[QUOTE=vectorgraphx]<!--#include virtual="/footer.html" --> should work just fine, as long as your server supports SSI.[/QUOTE]


Good Suggetions, it is really good way to call any file

for SSI setting you can contact with your server administrator,

Ared
04-08-2007, 10:14 PM
hi.. try to see this url: http://www.web-source.net/html_codes_chart.html maybe it could help you.. i see a code and example for footer.