<?php
// Ip visitatore
$ip = $_SERVER['REMOTE_ADDR'];
// Url del sito che mi fornisce le informazioni + ip visitatore
$url = "https://freegeoip.net/json/".$ip;
$pagina = file_get_contents($url);
$json_output = json_decode($pagina, true);
// printo la nazione e la regione dell'indirizzo ip
echo "PAESE -> <strong>".$json_output[country_code]."</strong>.<br/>Regione ->".$json_output[region_name];
// printo la mappa di google maps in base alla regione
echo '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.it/maps?f=q&source=s_q&hl=it&geocode=&q='.$json_output[region_name].'&aq=0&oq='.$json_output[region_name].'&sll=40.748967,14.784279&sspn=3.732668,8.453979&t=h&ie=UTF8&hq=&hnear='.$json_output[region_name].'&ll=40.747257,14.782104&spn=3.712341,8.453979&z=8&output=embed"></iframe><br /><small><a href="https://maps.google.it/maps?f=q&source=embed&hl=it&geocode=&q='.$json_output[region_name].'&aq=0&oq='.$json_output[region_name].'&sll=40.748967,14.784279&sspn=3.732668,8.453979&t=h&ie=UTF8&hq=&hnear='.$json_output[region_name].'&ll=40.747257,14.782104&spn=3.712341,8.453979&z=8" style="color:#0000FF;text-align:left">Visualizzazione ingrandita della mappa</a></small>';
?>