/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php function getRealIpAddr() { $ip=$_SERVER['HTTP_CLIENT_IP']; $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; } else { $ip=$_SERVER['REMOTE_ADDR']; } return $ip; } $useripaddress = getRealIpAddr(); echo $useripaddress; ?>