include common code in web pages

liunx

Guest
Is there an html tag or some metod to include common code into pages. I want to create stuf that needs to appear on each page, i'm aufully tired on changing each page, i would like to just make a change once and the each page use the changed common code.<!--content-->Not in HTML, but you can do this with server side languages. Which of those does your server support? PHP? SSI?<br />
<br />
PHP (.php)<br />
<?PHP<br />
include "file.txt";<br />
?>SSI (.shtml)<br />
<!--# include file="file.txt"--><!--content-->Or get a decent editor, HTML-Kit (<!-- m --><a class="postlink" href="http://www.chami.com/html-kit/">http://www.chami.com/html-kit/</a><!-- m -->), then you can change the same code snippet in all your files.<!--content-->it's a third party's isp. i'm not real sure what it is, kinda doing a favor and just trying to make it easier on me. <br />
<br />
do you need access to the server to specify ssi's?<br />
<br />
how about javascript<!--content-->
 
Back
Top