Home     SSI Lab     CSS Templates     CSS     Htaccess     Web Design     XHTML

X-SSI Lab

graphic-img   

SSI-D HOME

SSI LAB

Introductory Topics

SSI Directives

Extending SSI

Apps/Examples

Top Resources

CSS Templates

CSS

.Htaccess

Web Design

(X)HTML

HTML-Kit

Resources





SSI Include Command

Introduction

The purpose of this quick guide is to show you how to include a file into another file using SSI. In order to include a file you must use the aptly named INCLUDE command!
By definition the include command inserts the contents of a specified file into the response stream being sent to the client replacing the include directive. There are two kinds of includes:



Include File

The "Include File" argument is used when the path to the document we want to include is given relative to the shtml file itself. In other words, the file we want to include is in the same directory as the file which contains the include command or in a directory below the file. You cannot use 'File' to go "up" a directory such as "../include-this.htm"

Example:

We want to include a copyright notice into main.shtml, so IN main.shtml we add the following:

<!--#include file="copyright.txt" -->
or
<!--#include file="includes/copyright.txt" -->

The contents of copyright.txt could be:

<p>Copyright 2002 <a href="http://yourdom.com">You</a>.</p>

Result: In main.shtml the following will get displayed:

Copyright 2002 You.



Include Virtual

"Include virtual" should be used when the path to the document is given relative to the document root.

Example:

The copyright we want to include exists in another sub-directory, so to include the copyright into file.shtml we use the following:

<!--#include virtual="/home/includes/copyright.txt" -->

The result will be the same as above.



File Extensions of Included Files

The file to include can generally have any extension. I usually use .txt, but .htm .html .inc etc is also fine. If the document to be included contains SSI code which will need to be parsed by the server then it will have to have the extension .shtml or whatever your server is set-up to parse (process).




Advertisement Sign up for free to PayBox.me today and get $25 just for joining AND earn up to $20 per day for participating.