I have a fat HTML Output from a php scrip ti have written, and i was wondering how to compress it from the file, so it loads up alot quicker. I have tryed .bz compression (writing it all to a file then using that) but i cant seem to make it go any quicker than it does already. I also have no access to the sevrer and ob_start() would appear to be disaled! thanks!
Er, well you're kinda stuffed then - I was going to suggest some stuff but without access to the server.. then you can either static-ise your page, break it in to separate pages or improve the efficiency of your HTML (not using frames again, are we? )
Grrrrr... How about a way of sending the data direct from the database to the user in compressed format, then using my php scripts to decrypt it at the other end ? could that work ?
If you sent (somehow) data direct from the DB to the user, then where could PHP come into this? I think you'd have a hard time getting data to the user straight from the db. What is it that needs compressing so urgently anyway?