[PHP] PHP and SSI

2002-06-06 Thread Jerry

Is it possible to use SSI with PHP? If so, where can I learn how
to do this?

TIA,
Jerry

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP or SSI -- What's faster?

2001-08-14 Thread Christopher Raymond




PHPers:

So if I was just going to need includes on a few pages, what's faster PHP or
SSI on Linux/Apache?


Christopher Raymond


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] PHP AND SSI

2001-05-23 Thread Shashwat

How can I run SSI commands like !--#include file=desk.htm-- etc. in PHP
files... as ASP supports it.. I have Apache on Linux Server with PHP
4 installed

Shashwat





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] PHP AND SSI

2001-05-23 Thread Zak Greant

Use PHP's include() function. See the online manual for details.

--zak

- Original Message -
From: Shashwat [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 23, 2001 4:07 AM
Subject: [PHP] PHP AND SSI


 How can I run SSI commands like !--#include file=desk.htm-- etc. in
PHP
 files... as ASP supports it.. I have Apache on Linux Server with
PHP
 4 installed

 Shashwat





 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] PHP AND SSI

2001-05-23 Thread John Monfort



  You should be able to just print it. The code won't matter to php, but
the browser will process it.

?php

  echo !--#include file='desk.htm' --;



__John Monfort_
_+---+_
 P E P I E  D E S I G N S
   www.pepiedesigns.com
The world is waiting, are you ready?
-+___+-

On Wed, 23 May 2001, Shashwat wrote:

 How can I run SSI commands like !--#include file=desk.htm-- etc. in PHP
 files... as ASP supports it.. I have Apache on Linux Server with PHP
 4 installed

 Shashwat





 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] PHP AND SSI

2001-05-23 Thread Shashwat Nagpal

Thanks alot!
i'll sure do that

Cheers!

Shash
- Original Message -
From: Zak Greant [EMAIL PROTECTED]
To: Shashwat [EMAIL PROTECTED]
Cc: Php-General [EMAIL PROTECTED]
Sent: Wednesday, May 23, 2001 3:41 PM
Subject: Re: [PHP] PHP AND SSI


 Use PHP's include() function. See the online manual for details.

 --zak

 - Original Message -
 From: Shashwat [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 23, 2001 4:07 AM
 Subject: [PHP] PHP AND SSI


  How can I run SSI commands like !--#include file=desk.htm-- etc. in
 PHP
  files... as ASP supports it.. I have Apache on Linux Server with
 PHP
  4 installed
 
  Shashwat
 
 
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] PHP AND SSI

2001-05-23 Thread Christian Reiniger

On Wednesday 23 May 2001 12:12, John Monfort wrote:
   You should be able to just print it. The code won't matter to php,
 but the browser will process it.

 ?php

   echo !--#include file='desk.htm' --;

the browser will process it

What does SSI stand for?
  - Sis Sounds Interesting
  - Server Side Includes
  - Selective Stupidity Incorporated

You have three guesses...

-- 
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)

/* you are not expected to understand this */

- from the UNIX V6 kernel source

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]