leusmith 0 Report post Posted November 24, 2006 OK, so I want to know if it's possible to have my links as a seperate file and simply reference that file in the rest of my site's pages so that if I change the links, I don't have to go and edit every single page of my site. Does anyone know how to do this? Share this post Link to post Share on other sites
truefusion 3 Report post Posted November 24, 2006 Two ways: PHP include, or (i)frames.Since you've posted this in the HTML section, i'ma suggest using an iframe. Information on how to properly use an iframe can be found here.If you would like to know how it's done with PHP, let us know. Share this post Link to post Share on other sites
AlternativeNick 0 Report post Posted November 25, 2006 (edited) if your looking to use a php way, put all of your links in a html form (<a href="link">text</a><br>) into a text file, then use a php include like this: <?php include('file') ?> replace file with the relative file path Edited November 25, 2006 by AlternativeNick (see edit history) Share this post Link to post Share on other sites