Re: [PHP] Apache Server Side Includes mixed with PHP pages

2002-02-28 Thread Joel Boonstra
> Thanks Martin - that does work. I was just thinking in ASP terms. But I > am curious as to whether Server Side Includes can work together with > php. Nope, at least not with Apache <= 2.0. Apache 2 will let you have multi-pass parsing, so your PHP could output SSI, which would then be parsed.

Re: [PHP] Apache Server Side Includes mixed with PHP pages

2002-02-27 Thread Richie Chauhan
why don't you just do this? > >include "includes/header.html"; > echo "Hello"; > include "includes/footer.html"; > ?> > > -Original Message- > From: Richie Chauhan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 28, 2002 6:40

RE: [PHP] Apache Server Side Includes mixed with PHP pages

2002-02-27 Thread Martin Towell
why don't you just do this? -Original Message- From: Richie Chauhan [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 6:40 AM To: [EMAIL PROTECTED] Subject: [PHP] Apache Server Side Includes mixed with PHP pages Hi all, First post to this list. I am trying to d

[PHP] Apache Server Side Includes mixed with PHP pages

2002-02-27 Thread Richie Chauhan
Hi all, First post to this list. I am trying to do the following ***php file*** ***end php file In the php file the includes aren't parsed by the server, the php execution works. I have apache setup to do server side includes on .shtml files. I tried telling it