/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function getRealIpAddr() { { $ip=$_SERVER['HTTP_CLIENT_IP']; } //to check ip is pass from proxy { $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ip=$_SERVER['REMOTE_ADDR']; } return $ip; }