thouck at thouck.com wrote:

> I don't see a specific question here, but I'll take a shot anyway.
> 
> I've done something similar to this in the past, configuring apache to
> parse .php *and* .html files as PHP.  There is a section in your
> httpd.conf file that looks like:
> 
> # The following is for PHP4 (conficts with PHP/FI, below):
> <IfModule mod_php4.c>
>   AddType application/x-httpd-php .php4 .php3 .phtml .php
>   AddType application/x-httpd-php-source .phps
> </IfModule>


Having every file parsed by php is not a good idea for performance 
reasons, I'd recommend setting up an .htaccess files that sets this up 
just for the directory the php in question is in... (You probably have 
to set up the master config to let .htaccess mess with such options...)