alrighty, so im over hear slowly learning how to program a website
so far im decent with editing HTML and CSS, but i dont think ive found how to do what i want
so far im up to 26 seperate pages of info, and all but one of those pages has the same header, the last page only has a partial header (home , gallery, ect row )
i would like to only have to edit a few text / html files anytime i want to edit the headers
you would have to use a backend programming language such as .ASP or .PHP, etc. You can use an SSI (server side include), or dreamweaver will do it with some type of template system however it probably sucks.
i use a new xml/javascript variant called ajax to effectivly do what you are looking for on one of my pages. What i am able to do is load a .html .php etc… page into a <div> tag I call that tag container, and build the page around it. When you click a tab, it loads the container. see it in action at www.laxbuffalo.com Look around the source, the code block that you would be looking at is “ajaxpage()”
you would have to find out what server software your hosting provider is using, and that would tell you which server language you could use. (.NET, .PHP, .ASP, etc)
For example, if your host is running linux boxes supporting PHP, you could just change your file extentions to *.php and use SSI’s. You do not need to do anything else to the pages that has anything to do with PHP.
Don’t use JS for something like this… it is not necessary. For one, search engines will not see it, any users without JS enabled will be blocked from the content, and it is a scripting language, which should not be used simply to replace the simple function of an include.
Where are you hosting? Find out what Server Side Languages your host supports.
ill figure out how to do the php eventualy i guess, id prefer something the search engines could find, but i couldnt figure out what the prob was with the php coding, or if it was a prob with the provider