1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Cms for web design clients?

Discussion in 'Content Management' started by jamesle, Jul 13, 2007.

  1. #1
    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!
    :)
     
    jamesle, Jul 13, 2007 IP
  2. Machi

    Machi Active Member

    Messages:
    540
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    60
    #2
    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
     
    Machi, Jul 13, 2007 IP