Server Side Includes

This server side include uses php. These are usually stored in a top level folder called 'inc'. THe file name of the include file is 'ssi.inc.php'. The 'inc' just lets you know it is an include file

The for it is as follows:

<?php  // donotes the start of php code 
include 'inc/ssi.inc.php';
?>     <!-- closes the php code -->