Finding out who sent data to my website [closed]

The answer is here: http://stackoverflow.com/questions/15699101/get-the-client-ip-address-using-php

Easy solution is:

$IP = $_SERVER['REMOTE_ADDR'];

Leave a Comment