Skip to content

Instantly share code, notes, and snippets.

@itsbalamurali
Created November 23, 2013 07:29
Show Gist options
  • Save itsbalamurali/7611873 to your computer and use it in GitHub Desktop.
Save itsbalamurali/7611873 to your computer and use it in GitHub Desktop.
Get Users IP Address Accounts for proxies:
<?php
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip=$_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip=$_SERVER['REMOTE_ADDR'];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment