[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] SSI with PHP pages



> 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