Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6722903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:30:14+00:00 2026-05-26T09:30:14+00:00

I have been using Dreamweaver to build several sites. In particular, I utilize its

  • 0

I have been using Dreamweaver to build several sites. In particular, I utilize its templates to manage consistent layout / design throughout each site.

In a nutshell, it works like this:

  1. Create a template, for example:
    • <html><body><h1><!-- Marked as editable region. --></h1></body></html>
  2. Create a new page based on the template
    • <html>body><h1>Hello World!</h1></body></html>

So, if I need to change h1 to h2, I’d simply edit the template and all pages based on it will get updated automatically: simple. The question is how do I do this without depending myself on a proprietary application like Dreamweaver?

I am hoping a simplest possible solution. By simplest I mean, I hope I don’t need to build a CMS or something. 🙂

Thanks!

Update:
Can we do this using e.g. PHP?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:30:14+00:00Added an answer on May 26, 2026 at 9:30 am

    There are tones of several ways to do what you want.

    Let’s start from the Apache level:

    In case your web site run under apache you can use a module called SSI. SSI Stands for Server Side Includes. This is the simple way if you like to create template like web sites with HTML. The method allows you to split you web page into several files and then the server will compose all these into one page. So you can have in example a header.html footer.html sitebar.html about_us.html and when you call the about_us.html the server will load also the other three files into that one.

    Using PHP require(_once) or include(_once):

    PHP have four commands that allows the developer to load external php files into the current working file. So in example you can have the files header.php, footer.php about_us.php. and into about_us.php you can include the external files. Consider that as an example:

    header.php

    <html>
        <head>
            <title>My page title</title>
        </head>
        <body>
    

    footer.php

        </body>
    </html>
    

    about_us.php

    <?php
        require_once('header.php');
    ?>
    Enter here HTML for your about us page
    <?php
        require_once('footer.php');
    ?>
    

    Using a template Engine:

    You can use a template engine like smarty. That engine requires PHP and is somehow difficult to use it. This is the most famous template engine for a long time now.

    Using a programming language framework:

    You can use a programming language framework, such us CakePHP that allows you to split your theme and create your own theme.

    This list can be a really long. For now I thing you are ready to go with the most famous methods for templates 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Dreamweaver for my web development and would like to try
I have been using TortoiseSVN for some time and I really like it. I
I have been using Stanford POS Tagger to tag parts of speech in a
I have been using play 1.2.5rc4 for development of one app and I have
I have been using an API to do some work. This is how I
I have been using some Javascript to create a text field once an certain
I have been using the storyboard to make an application and currently there are
I have been using CI just fine using the MySQL driver. I want to
I have been using Matlab 2011b and contourf/contourfm to plot 2D data on a
I have been using the following sort: var query = _cityRepository.GetAll( .OrderBy(item => item.RowKey.Substring(0,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.