Getting A ClientPC’s Real IP Address Using PHP
Getting a client’s IP address can be quite simple as using $_SERVER[‘REMOTE_ADDR’], but the only thing is once the client uses a Proxy Server to connect to the Internet, it won’t return its real IP address anymore. Instead, it will return the IP address of the proxy server and not the client’s machine itself. So [...]