Hi all!
I need to send some pretty long strings from a flash application to a PHP page, and of course I want to compress it to reduce the traffic load to/from the server. How can I compress the string in an effective way and easily decompress it in PHP?
As it looks now, we're leaning towards standard zip file transfer, but the functionality in PHP to handle this operation are somewhat heavy. When the zip stream is recieved, I have to create a file from that stream - and after that read the file with zip_*-functions.
It would be much more handy and pretty to operate on the string directly.
Best regards,