1 2 3 4 5 6 7 8 |
<?php $dog = "151.224.161.248"; $location = file_get_contents('http://freegeoip.net/json/'.$dog); $parsedJson = json_decode($location); echo $city = htmlspecialchars($parsedJson->city); ?> |

1 2 3 4 5 6 7 8 |
<?php $dog = "151.224.161.248"; $location = file_get_contents('http://freegeoip.net/json/'.$dog); $parsedJson = json_decode($location); echo $city = htmlspecialchars($parsedJson->city); ?> |
© 2022 CODEHAVEN