File size: 775B
<?php
/*
///////////////////////////////////////////get country
function GetCountry($ipadd){
$apiurl = "http://api.hostip.info/country.php?ip=".$ipadd."";
$getcid = fopen($apiurl, "r");
while($cidata = fread($getcid, 1024)){
$readcid .= $cidata;
}
if($readcid=="RS"){
$country = "Serbia";
}elseif($readcid=="US"){
$country = "United States";
}else{
$country = "$readcid";
}
fclose($getcid);
return $country;
}
*/
///////////////////////////////////////////get Full country
function GetCountry($ipadd){
$apiurl = "http://api.hostip.info/get_html.php?ip=".$ipadd."";
$getcid = fopen($apiurl, "r");
while($cidata = fread($getcid, 1024)){
$readcid .= $cidata;
}
fclose($getcid);
return $readcid;
}
?>