GZIPing this page with php

include this at the top of the document you want to gzip:



<?php
	if( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) && substr_count( $_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip' ) )
		ob_start( 'ob_gzhandler' );
	else
		ob_start();
?>