Get Real IP Address with PHP


/ Published in: PHP
Save to your folder(s)

All credit for this snippet goes to Roshan, link is given above.


Copy this code and paste it in your HTML
  1. <?php
  2. function getRealIpAddr(){
  3. if (!empty($_SERVER['HTTP_CLIENT_IP'])){
  4. //check ip from share internet
  5. $ip = $_SERVER['HTTP_CLIENT_IP'];
  6. }
  7. elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
  8. //to check ip is pass from proxy
  9. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  10. }
  11. else{
  12. $ip = $_SERVER['REMOTE_ADDR'];
  13. }
  14. return $ip;
  15. }
  16. ?>

URL: http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.