<?php if(extension_loaded('zlib')) { ob_start('ob_gzhandler'); $compressed = ''; } else { ob_start(); $compressed = ' not '; } echo 'This content is ' . $compressed . 'compressed with PHP gzip.';//replace next line with your code ob_end_flush(); //put this in the end of your page ?>
Hope this will be helpful to someone else. Thanks and Enjoy the coding.