RE: [PHP] something like SSI ?

2001-08-15 Thread [EMAIL PROTECTED]
include(/path/to/the/include/file.inc); Original Message: - From: Martin [EMAIL PROTECTED] Date: Wed, 15 Aug 2001 03:21:42 +0200 To: [EMAIL PROTECTED] Subject: [PHP] something like SSI ? Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server

Re: [PHP] something like SSI ?

2001-08-14 Thread Philip Murray
Quoting Martin [EMAIL PROTECTED]: Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server Side Include in PHP ? Or what is best to use instead, fread ? Check out include(); require(); include_once(); require_once(); It's all in the manual --

Re: [PHP] something like SSI ?

2001-08-14 Thread Daniel Adams
check out the require, include, and require_once functions in the manual on php.net - Dan :-) On Wed, 15 Aug 2001, Martin wrote: Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server Side Include in PHP ? Or what is best to use instead, fread ?

Re: [PHP] something like SSI ?

2001-08-14 Thread Michael Kimsal
I didn't see this was answered yet, so: SSI and ASP are different things that happen to live on the same server. The ASP designers thought it would be easier to simply use the SSI engine rather than write that functionality into ASP itself (to let VBScript and others 'hook' into it). You notice