Hey, What do you guys you to manage your custom coded sites content easily with having to touch any coding, or when you wanna edit the navigation without having to change each page? Do you use frontpage or dreamweaver, or an online intergrated one? Thanks James!
I'll always make header, navigation and footer file standalone and then include them to content file: <?php $title="Title of each page"; include("header.php"); include("menu.php"); ?> Content <?php include("footer.php") ?> PHP: Of course in header.php have to be: <title>MyWeb.com : <?php echo $title; ?></title> HTML: It's imho easiest way... Rep+ is appreciated... thanks