<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Rob Giltrap wrote:
<blockquote cite="mid422B8A71.2080008@kiwihq.com" type="cite">I want to
separate the header and side menu bar in an "include" type statement
for ease of maintenance.<br>
</blockquote>
This is done server-side, typically using either an Apache SSI
reference or a scripting language like PHP.<br>
<br>
Apache SSI:<br>
<br>
<code> &lt;!--#include virtual="some virtual path.txt" --&gt;<br>
or<br>
</code><code> &lt;!--#include file="localfile.txt" --&gt;<br>
<br>
PHP:<br>
<br>
&lt;? include('header.php'); ?&gt;<br>
<br>
<br>
<br>
<br>
.Matthew Cruickshank<br>
<a class="moz-txt-link-freetext" href="http://holloway.co.nz/">http://holloway.co.nz/</a><br>
</code><code><br>
<br>
</code><br>
<br>
</body>
</html>