I have a website that's growing like crazy. Each time I make a link on one page I have to update the links on the other 50+ pages. Or to keep consistent with theme of my site, I have to update all the pages after a change to one page.
Is there an easier way to this with some kind of program? (i do not and will not use frames).
Thanks!
Rex M2007-03-27T19:29:43Z
Favorite Answer
The simplest method is to use include files and CSS. See http://www.hardcoder.com/scripting/php/include_files.php for info on includes for several platforms.
Beyond that, there is a myriad of choices, ranging from a simple database-driven content lookup page, all the way to a robust content management system (search Google for CMS and you will find thousands of free and paid web CMS products of varying qualities). Many enterprise corporations use very large CMS systems like Microsoft CMS or IBM WebSphere products to manage their site content.
In all, it's a very wide and diverse field. Start with looking into database-driven websites, either using PHP and MySQL or ASP.NET and SQL - the two most common dynamic web development platforms.
Have you ever tried PHP? Server side includes should make it easy to put a section for the links in each page that you desire, and an update to this section would result in it being viewed on all pages.
The syntax for that would be
<?php require("insertpagenamehere") ?>
Note that the link area has to be in its own file (usually a .php file)