PHP Proxy Detection

Proxy Detection

<?
if (getenv('HTTP_X_FORWARDED_FOR')) { $ip = getenv('HTTP_X_FORWARDED_FOR'); } 
else { $ip=getenv('REMOTE_ADDR'); }
echo $ip;
?>