This page is sent gzip-compressed.
Enabling compression in PHP:
<?php
$compressed = ob_start("ob_gzhandler");
?>
<html>
...
The ob_start function must be called before any output is sent to the client. To check if the compression succeeded (i.e. client supported it), check the $compressed boolean.