in reply to Compression

You can use compress() and uncompress().

As the docs state, this operates 'in-memory' and returns the compressed data. =)

You would use something to the effect of:
$compressed_result = compress($result);

Replies are listed 'Best First'.
Re: Re: Compression
by satanklawz (Beadle) on Dec 22, 2001 at 03:08 UTC
    thanks much!! i got what i was working on to work :P