Is there any way to compress html, save it to a static file and have it display in a browser properly?
I tend to make php apps that output static html, rather than run dynamically... So I want to be able to run something like ob_gzhandler over an string, then save it to a .html file.
I know I could use mod_deflate, but that would sort of defeat the purpose of making static pages in the first place...
Cheers!