Thanks Ralph, that is a really neat idea! So then every time the browser loads
the page it will go to the cgi-bin and find the footer there? What would
footer.r have to look like to do this? This way I can change the footer.r once
and all the pages will automatically show the new footer?
tom johnson
[EMAIL PROTECTED] wrote:
> I assume you want to call a Rebol routine as a footer? Two simple ways come
> to mind (I'm sure there are others).
>
> First, if your site allows server side includes, use:
>
> <!--#exec cgi="/cgi-bin/footer.r" -->
>
> I use this technique to call my Rebol rotating banner program for several
> pages.
>
> Or... if your site supports PHP (i.e. your page can have an extension of
> .phtml or .php3) use:
>
> <?php include("http://abooks.com/cgi-bin/banner.r") ?>
>
> That's my acutal rotating banner link, feel free to put it on all your
> sites<g>.
>
> Anyway, hope the above was helpful.
>
> --Ralph