Several messages have been posted about the problem of PHP parsing .php files but not .html file, even with this line in the httpd.conf:
AddType application/x-httpd-php .php .html
Even Rasmus Lerdorf remarked that those of us with this 'problem' were "dumb." See <http://www.phpbuilder.com/mail/php-install/2000071/0150.php>
Au contraire. The httpd.conf needs both of the following lines in that order in order for PHP 4 to parse .html files
AddType text/html .html
AddType application/x-httpd-php .php .html
That should fix it. Let me know if it doesn't.
Justin Watt
Student, UNC Chapel Hill