Various sources for SSI:
- Apache's mod_include documentation.
- Server-Side Includes and its Extensions.
- SSI examples
- Dreamweaver XSSI support
- Appendix C from Apache Server for Dummies.
posted by j 9/10/2000 06:38:00 AM
$footerhtml = "/home/jaw/jwalsh.net/includes/themes/" . $theme . "/footer.php";
if ( file_exists($footerhtml) ) {
include($footerhtml);
} else {
printf("Error: No theme specified");
}
?>