someone here knows how to use hostIP.info? i just want to use the free code that they provide to display the visitors information like country, ip, and city. They have sample code but I don't know how to use it. Please I need help. Thanks -Javver
Basic example. Just change the URL if you want different info: <?php $url = 'http://api.hostip.info/get_html.php?ip=' . $_SERVER['REMOTE_ADDR'] . '&position=true'; $location = file_get_contents($url); echo $location; ?> PHP: