vote up 2 vote down star

Hi,

I have a website which consists of a bunch of static HTML pages. Obviously there's a lot of duplication among these (header, menu, etc). The hosting company I plan to use supports PHP, which I know nothing about. Presumably PHP provides some sort of #include mechanism, but what changes to I need to make to my HTML pages to use it?

For example, suppose I have a page like this

index.html

<html>
  <head></head>
  <body>
    <h1>My Common Header</h1>
  </body>
</html>

Obviously I need to move the common part into it's own file:

header.html

<h1>My Common Header</h1>

Given the example above (and assuming all files are in the same directory):

  • What do I add within the body tag to get header.html included?
  • Do I need to rename index.html or add some special tags to indicate that it's a .php file?
  • Do I need to make any changes to header.html?

Update: I want to emphasise that my objective here is simply to find the lowest-friction means of reducing duplication among static HTML files. I'm a bit reluctant to go down the server side includes route because I don't yet know what type of server (IIS/Apache) I'll be hosting the files on, and whether includes will be turned on or off. I was drawn towards PHP only because it is about the only thing I can presume will be available that will be able to do the job. Thanks for the responses.

Thanks, Donal

flag

37% accept rate
Both IIS and Apache support Server Side Includes. I would suggest that any hosting provider that would allow PHP but not SSI's has some issues. – Mystere Man Feb 7 at 21:04
Also, the issue of attack surface has nothing to do with mission criticality or traffic. If a vulnerability is found, it makes you a target of automated bots that take over your site to spam and help their masters SEO. Not caring just because you don't think you're important enough is a bad idea. – Mystere Man Feb 7 at 21:06

8 Answers

vote up 1 vote down

Back in the day, I used SSIs (the "<!--#include virtual="file.inc"-->" method described above by Mystere Man) quite a bit for static HTML pages and I would definitely recommend using that.

However if you want to eliminate any uncertainty about whether support for that will be enabled on the server, you could develop your separate files locally and merge them into the resulting files before uploading to your server. Dreamweaver, for example, supports doing this in a seamless fashion.

Or you could do it yourself with a rather simple script in your language of choice by doing simple string replacement on markers in the files, replacing {{{include-header}}} with the contents of a "header.html" file and so on.

Edit

Oops! Somehow I didn't see Clayton's post with the same note about Dreamweaver.

link|flag
vote up 2 vote down

Forget doing it on the server altogether.

If all you really want to do is maintain some static pages -- and don't anticipate ever having to really use PHP -- I'd just do it with Dreamweaver, which will allow you create and manage templates and variable content on your end.

No includes needed. No templating engine needed. (These would be overkill for what you are trying to accomplish.)

link|flag
This is a pretty valid solution and requires no knowledge of PHP. – Syntax Feb 8 at 11:33
I does require Dreamweaver however :) – Don Feb 8 at 15:39
True, but sometimes it's best to use a hammer when you're driving nails. You may already have the wrench -- or be able to get a wrench for free -- but it's a pain to drive nails with a wrench. :) – Clayton Feb 8 at 19:53
vote up 1 vote down

While using an include file for the header is a solution I went a different route when I faced the problem several years back: I wanted all pages to use the same layout (which I assume is rather common ;-). Thus, as I only wanted to change the content of the page I made the page content the file that gets included and have a master template file that includes header and footer. For setting the page to be included I resorted to creating quite small php scripts that only set a variable that holds the page to get included. In some cases the page can also get named by a GET parameter. Of course this requires proper validation of that parameter. In the long run I don't need to worry about the HTML itself anymore -- all I do is write small snippets (which should be complete for themselves of course) that get included.

A possibly even better solution would be to use an existing template framework. Due to the contraints I had back then I wasn't able to do so, but I would do it when facing the same issue again.

link|flag
vote up 0 vote down

OK this is a semi-programming related question only.

PHP does have include(), which is really easy to use, but it doesn't contribute to future maintainability. I wouldn't recommend it, especially for big sites.

I'm a pro-frameworks. I've used CodeIgniter, CakePHP and even Smarty template engine. If you are serious about PHP, do consider CakePHP. There's this "layouts" concept where you frame your header, footer, css, javascript outside of the main content; e.g. for the "about us" page, your content would be something like:

This is an about us page that tells you a whole bunch of stuff about us...

CakePHP takes this this content, and wraps your layout around it:

header
css
javascript
This is an about us page that tells you a whole bunch of stuff about us...
footer

link|flag
You are absolutely right about the advantages of using a framework for website development but I'd like to point out that the OP did not talk about getting serious with PHP nor does he seems to require more than an include as he's running with a static website at the moment. – lpfavreau Feb 7 at 19:55
And an include does contribute to future maintainability, even though not as much as other solutions: frameworks, CMS, etc. It's definitely easier to change the content of menu.php to change your menu than go through 30 static pages. – lpfavreau Feb 7 at 19:56
I hestitate to step outside my comfort zone (PHP) into things like server-side includes. Otherwise I think Mystere Man's answer is probably most useful. – Wayne Khan Feb 7 at 19:57
OK, maintainability is the wrong word. I'm trying to find the word, but I can't. I've simply spent too much time looking at crappily-coded PHP websites with include() and require() EVERYWHERE. – Wayne Khan Feb 7 at 20:01
I think you mean understandable. It's hard to understand a page that is littered with includes. – Mystere Man Feb 7 at 20:09
show 6 more comments
vote up 1 vote down

While you can just use the "include", "require", or "require_once" directives to include things in one page, you might have better luck with a template engine like Smarty

link|flag
vote up 2 vote down

You should first change the file extensions of index and header to be .php, then you can do:

<html>
<head></head>
    <body>
        <? include 'header.php'; ?>
    </body>
</html>

And your header.php file just has

<h1>My Common Header</h1>
link|flag
You are better off using the full <?php tag instead of the <? tag as the short tag version is not supported by default anymore in PHP5 as it can conflict with other languages. – lpfavreau Feb 7 at 19:49
vote up 6 vote down

You are looking for include (or one of its derivative such as include_once, require, require_once):

header.php

<h1>My Common Header</h1>

index.php

<html>
  <head></head>
  <body>
    <?php include('header.php'); ?>
  </body>
</html>

And so on, for your footer for example.

link|flag
vote up 5 vote down

You don't need to use PHP to get this functionality, and it's generally a bad idea to do so due to potential security concerns. Essentially, you're swatting a gnat with a nuclear bomb. If you're not using a dynamic language, then you're looking for server side includes.

In IIS, for instance:

<!--#include virtual="file.inc"-->

Be aware that you often have to configure the server to utilize them, as this feature is often turned off by default. Both IIS and Apache support server side includes, but they use different configurations.

You can find more information here:

Server Side Includes

EDIT: I don't mean that it's a bad idea to use PHP, just using PHP solely for including other files. It creates a larger attack surface by bringing PHP into the mix when it's not needed, thus the potential for security issues when the functionality of PHP is not required.

EDIT2: I think it's a bad idea to assume you won't be a target because of your size, and thus you can ignore security. Most sites are compromised by automated worms and turned into malware hosts, spam zombies, or pirated software/media servers. Apart from the fact that you might end up being involved with infecting others, your site can become blacklisted and it can cost you real money in bandwidth overage charges. We're talking hundreds or thousands of dollars.

Just because you're a small site doesn't make you any less of a target. Just being on the internet makes you a target.

link|flag
Agreed; it's not necessary to use PHP to do inclusion unless you're planning to incorporate PHP into some of the included files at a later date. – Rob Feb 7 at 19:46
The gnat/nuclear bomb analogy works, but since I wrote my long answer... – Wayne Khan Feb 7 at 19:50
I've updated my post to indicate why I'm reluctant to use server side includes. The website in question is the exact opposite of mission critical, will attract very little traffice, so I really couldn't care less about the size of my attack surface. – Don Feb 7 at 20:59
everyone needs to worry about their attack surface in this day of zombies and worms. You don't become a target because you're big, you become a target because you're a site on the internet, that's it. – Mystere Man Feb 7 at 21:07
Don - if you aren't going to follow best practices you are in the wrong industry. – Syntax Feb 8 at 11:31
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.