If everything is configured properly, you can go to the httpd.conf (I'm assuming Apache on Linux) file and change the extension for php files from "php" (or php3) to ".htm".
Look for the line that says:
AddType application/x-httpd-php .php
Change that '.php' to '.htm'. That should do it.
However, this will process ALL files with a .htm extension through php.
SoulRazer wrote:
I would like to configure PHP to run in files with an .htm extension.
How do i do this?