Get ip address using php
This tutorial i will show you get the IP(Internet Protocol)Address of proxy server.
Coding
Coding
<?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']; echo $ip; } ?> |
Program Explaination:
In this coding the REMOTE_ADDR will finding IP address of proxy server.
Output:
0 comments:
Post a Comment