I am making an android app and a website that downloads info from a php script. The php script compresses the data using gzcompress($dat, 9);
.
I know how to uncompressed it in android, but how do you do it in javascript?
In this post: Compress data in php and uncompress in javascript
sstringer mentions you can put a special header when using php's gzencode
so jquery can automatically uncompress it. Is there a way for the way I am doing it?
Thanks