<div dir="ltr">On Mon, Aug 18, 2008 at 4:36 PM, Greg Houston <span dir="ltr">&lt;<a href="mailto:gregory.houston@gmail.com">gregory.houston@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
This seems to be mostly useful for people creating small websites that<br>
are afraid of server side scripting languages like PHP, Python and<br>
Ruby.</blockquote><div><br>I&#39;m really going to have to point at this.&nbsp; If your server provider doesn&#39;t include PHP or something similar, there&#39;s something wrong.&nbsp; There are *tons* of dirt-cheap providers that do.&nbsp; Using, say, PHP doesn&#39;t even require anyone to *learn* anything.&nbsp; The example from the original email would simply be:<br>
<br>--- Master Document ---<br>
&lt;html&gt;<br>
 &nbsp; &lt;head&gt;<br>
 &nbsp; &nbsp; &nbsp;&lt;title&gt;Include Example&lt;/title&gt;<br>
 &nbsp; &nbsp; &nbsp;&lt;?php include &quot;global_head.ihtml&quot;; ?&gt;<br>
 &nbsp; &lt;/head&gt;<br>
 &nbsp; &lt;body&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php include &quot;header.ihtml&quot;; ?&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php include &quot;<a href="http://www.pagelets.com/foo.ihtml" target="_blank">http://www.pagelets.com/foo.ihtml</a>&quot;; ?&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &lt;?php include &quot;footer.ihtml&quot;; ?&gt;<br>
 &nbsp; &lt;/body&gt;<br>
&lt;/html&gt;<br>
<br>
--- Header.html ---<br>
&lt;div id=&quot;header&quot;&gt;<br>
 &nbsp; &lt;h1&gt;Header&lt;/h1&gt;<br>
&lt;/div&gt;<br><br><br>You can even do html fragments or attributes.&nbsp; There&#39;s literally nothing to learn over the current proposal, but this works right now in virtually every host and doesn&#39;t depend on the user&#39;s browser.<br>
<br>~TJ<br></div></div></div>