hiçbir sıkıntı yok ama otel internetinden bağlandığımda İstanbul(kartal) olarak alıyor ve kullanmak istediğim botta hata oluşuyor
header("content type:text/html;charset=utf8;");
//http://havadurumu.com.tr/afyonkarahisar-hava-durumu
function havadurumu($gelen)
{
$curl= curl_init();
curl_setopt($curl,CURLOPT_URL,$gelen);
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl,CURLOPT_HEADER,0);
$isle= curl_exec($curl);
curl_close($curl);
return $isle;
}
$ip = @$_REQUEST['REMOTE_ADDR']; // the IP address to query
$sorgu = @unserialize(file_get_contents('http://ip-api.com/php/'.$ip));
$sehirbul= $sorgu["city"];
$adres=havadurumu("http://havadurumu.com.tr/".$sehirbul."-hava-durumu");
preg_match('@(.*?)@si',$adres,$sicaklik);
preg_match('@@si',$adres,$havabilgi);
preg_match_all('@.*?(.*?)
@si',$adres,$detay);
$sicaklik=$sicaklik[1];
$icon =$havabilgi[1];
$havanot = $havabilgi[2];
$nemorani=$detay[1][4];
$havaresim="";
kodlarım bunlar ne yapılabilir