in apaches httpd.conf file, there will be an addtype section - look for a line like
AddType application/x-httpd-php .php
and add .html
AddType application/x-httpd-php .php .html
This tells apache that html files should pass through the php parser.
adam