IP lookup

Djigit

Newbie
Joined
Nov 12, 2019
Messages
34
Reaction score
15
So, guys, I've been having these stalkers always texting me on Social media with fake accounts. Just completely taking my time away.

I know about using IP tracking links to get their IP addresses. But after I get the IP adresse, I want to know their geolocation, like where they live. Is there a software for that? In the last 2 weeks, I have been bombarded by fake accounts writing to me.... no, they are not Indians, they are from the same country as me.

Help a brother out in these tough times!:(
 
I've been having these stalkers always texting me on Social media with fake accounts. Just completely taking my time away.
And then:

I know about using IP tracking links to get their IP addresses. But after I get the IP adresse, I want to know their geolocation, like where they live. Is there a software for that?
Spend some more time.

Just block and ignore and move on.
 
Code:
country=file_get_contents('http://api.hostip.info/get_html.php?ip='); echo $country; // Reformat the data returned (Keep only country and country abbr.) $only_country=explode (" ", $country); echo "Country : ".$only_country[1]." ".substr($only_country[2],0,4);
?>
 
Back
Top