Using HTML types for PHP extensions - from php.net

In your httpd.conf

Code:
# Make all PHP code look like HTML
AddType application/x-httpd-php .htm .html
For this to work effectively, you must rename your PHP files with the above extensions. While it is a form of security through obscurity, it's a minor preventative measure with few drawbacks.

Anyone want to try it?

Smoge