Merhaba arkadaşlar, konumu ziyaret ettiğiniz için teşekkür ederim.

ip-api.com ile İP bilgilerini çekmeye çalışıyorum. Aslında çektim ama yazdıramadım.

if (isset($_GET['ipaddress'])) {
  $response = file_get_contents('http://ip-api.com/json/'.$_GET['ipaddress']);
  echo "<pre>";
  print_r(json_decode($response));
  echo "</pre>";
}
  <?php if (isset($response)): ?>
    Şehir: <?php echo $response->country; ?>
  <?php endif; ?>
ama sonuç olarak Warning: Attempt to read property "country" on string in C:xampphtdocst.php on line 26 şöyle bir hata alıyorum.