<?php
// Bu alanda kullanıcının IP adresi bulunuyor
$ip = getenv('REMOTE_ADDR');
'hostip.info sitesinin API'si kullanılarak bilgiler bulunuyor
$url = "http://api.hostip.info/get_html.php?".$ip;
$contents = file_get_contents($url);
$values = split("[\n|\r]",$contents);
foreach($values as $vals) {
$myvalues = split(": ",$vals);
$line = "<b>".$myvalues[0].":</b> ".$myvalues[1]."<br />";
echo $line;
}
?>