On Wed, 24 Apr 2002, Larry Brown wrote:
> I have run many .php documents and generated html from them without
> problems.  I have a client whose specific need to to keep the .html
> extention.  I want to embed a php script into the html but the script won't
> run.  I've tried two php enabled servers running apache and neither picks it
> out.  Is there a trick I'm missing?

Find the line in your httpd.conf file that looks like:

   AddType application/x-httpd-php .php

and add .html to it so that it looks more like:

   AddType application/x-httpd-php .php .html

This will cause PHP to get a crack at files ending with .html. As far as 
anyone seems to be able to tell, this doesn't slow anything down 
particularly.

miguel


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

Reply via email to