I don't want to encrypt the HTML... I want to encrypt the php include files (source), so it cannot be stolen by other contractors where I sub-contract at. The output form of the php can be in the clear.
Thanks... as far as my flush() problem.. it had to do with tables... used <BR clear=all> to fix.
originally:
<table (main)>
<tr>
<td spancol=2><table (header)></table></td></tr>
<tr>
<td><table align=left (left menu)></table (close left)></td>
<td><table (content)></table (close left)></td>
</tr>
<tr>
<td spancol=2><table (footer)></table></td></tr>
</table (main close)>
now:
<table (header)></table>
<br clear=all>
<table align=left
(left menu)></table (close left)></td>
<td><table (content)></table (close left)>
<br clear=all>
<table (footer)></table>