[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] SSI with PHP pages
- Subject: Re: [cobalt-users] SSI with PHP pages
- From: "Carrie Bartkowiak" <ravencarrie@xxxxxxxx>
- Date: Sun Jul 1 18:59:44 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> If so, is there any way that I can set it up to use SSI on .php
page?
Andy,
PHP has a handy 'include' feature that works just like SSI.
Where you want your included file to appear, just put:
include "filename.here";
You can also do this like a virtual include:
include "/includes/header.shtml";
CarrieB