scratchspace:
http://www.zend.com/manual/function.ob-start.php
http://forums.devshed.com/t49337/s.html
http://www.devshed.com/Server_Side/PHP/OutputBuffering/print_html
http://www.php4hosting.co.uk/devshed/
http://www.alt-php-faq.org/local/101/?PHPSESSID=55bff5468a4d4a8961ee37a687184b59#id101
Question : Using Apache can I get php to parse files not ending in .php? Answer : Yes it is possible, to make it work on all sites on your webserver change the following in your httpd.conf: AddType application/x-httpd-php .php to the following: AddType application/x-httpd-php .php .htm It is also possible to put this directive in the VirtualHost sections to do it per virtualhost basis. If that proves to be too much you can use .htaccess files to solve the task.