The PHP statements in the HTM file will not be executed. How to run php code in the HTML file?
How to execute php statements in HTML files:
1. Modify httpd.conf and instruct Apache to treat HTML as PHP.
You need to modify the http.conf file in the server.
Add the following statement to Apache's httpd.conf:
AddType application/x-httpd-htm .htm
Action application/x-httpd-htm "/php4/php.exe"
General virtual host, we cannot Modify httpd.conf, but we can do this by modifying .htaccess.
2, modify .htaccess
NEW PHP Add Handlers
SolutionIf you need an add handler for PHP please use the following:
#PHP5
AddHandler application/x-httpd-php5 .html .htm
#PHP4
AddHandler application/x-httpd-php4 .html .htm
That is if you need to parse .html files or any other extension as PHP you can place that in your .htaccess file.