Re: [PHP] include file using .htaccess

2001-04-23 Thread Keyur Kalaria
thanks for that , it is working fine. keyur - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Keyur Kalaria" <[EMAIL PROTECTED]> Cc: "php" <[EMAIL PROTECTED]> Sent: Saturday, April 21, 2001 9:18 PM Subject: Re:

RE: [PHP] include file using .htaccess

2001-04-21 Thread PHPBeginner.com
s) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Keyur Kalaria [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 22, 2001 12:51 AM To: php Subject: [PHP] include file using .htaccess Hello, How can I include any html or php file via .htaccess ? I want to include an html file

Re: [PHP] include file using .htaccess

2001-04-21 Thread Rasmus Lerdorf
Make sure AllowOverride includes Options and put these lines in your .htaccess: php_value auto_prepend_file header.html php_value auto_append_file footer.html -Rasmus On Sat, 21 Apr 2001, Keyur Kalaria wrote: > Hello, > > How can I include any html or php file via .htaccess ? > > I want to inc

[PHP] include file using .htaccess

2001-04-21 Thread Keyur Kalaria
Hello, How can I include any html or php file via .htaccess ? I want to include an html file in a site contaning around 1000 pages. I want to add header & footer dynamically on these pages . Is there any way to include header & footer on these pages using .htaccess file. thanks in advance ke