An example of a SSI in PHP.
PHP Code:
<?php
$title = "Index";
@require_once('includes/header.php');
?>
Now we put our contents in here!!
<?php
@require_once('includes/footer.php');
?>
Then in header we could add
PHP Code:
<html>
<head>
<link rel="stylesheet" href="styles/main.css" />
<title>Site Name - <?php echo "$title"; ?></title>
</head>
<body>
Which would make a page that has a different title on each page given by the $title variable. Also, all you would need to do to change a layout or add a link to your pages would be to edit the footer and header includes.
Good Luck!
