|
TexasWebDevelopers -> RE: Includes need help (4/3/2009 11:52:15)
|
here, again, is the advice we offered on the other forum: An include file is just a web page that has content in it but NOT the structure tags like <html> or <body> etc. That page content is then "included" in another page. Many web pages are built this way: One main page (that HAS the <html> and <body> tags) has headers, footers, navigation and content all included as separate bits of information. The include code (the "include link" you called it) may look like this (this may be different depending on the coding language being used): <!--#include file="menu.inc" --> So, you should probably not be editing the main page itself since all of the files are already included..I am guessing you want to change one of the included files. So, in the code view of your editor: find the name of the included page; open that page; change it; save it; and upload it. The changes will then be seen on ALL of the pages that have that file "included" in it. So what parts do you not understand?
|
|
|
|