Hi Chris, you said >>.php goes through the php pre-processor, then the resultant html dumped by the web server whereas .html is just read and dumped. If the server is configured to process .html as php scripts, then all scripts will be run through the php engine before being output, which adds load on the server as it double-handles each page request.
How then would one have a nice template web design while implementing php? the way i am doing it is the traditional way i believe which is the main php page in root, and from the root calling html templates inside the templates folder...
in those html templates are $_POST variables that need to break out into php...
your insights please...