<?php
    
/* Licence: AGPL ;) */

    /* NOTE: The production version is minified (183 bytes) for your pleasure,
     * and mine (OK, mainly mine).
     */

    /* HTTP 1.0 - No caching (IP)Plz! */
    
header('Pragma: no-cache');

    
/* HTTP 1.1 - No caching (IP)Plz! */
    
header('Cache-Control: no-cache, no-store, must-revalidate');

    
/* Proxy servers - No caching (IP)Plz! */
    
header('Expires: 0');

    
/* Just the IP (IP)Plz! */
    
header('Content-type: text/plain');

    
/* IP now (IP)Plz! */
    
echo $_SERVER['REMOTE_ADDR'];
?>