<HTML>
<HEAD>
<TITLE>Testing World IP Locator: Showing a map image and info at a time</TITLE>
</HEAD>
<BODY>
<span style='font-size: 20px;'>Testing World IP Locator: Showing a map image and info at a time</span><br>
<br>
<?
// Note: If you have downloaded this files from PHPClasses, you probably haven't the required image files, and you'll get an error. Go to http://phpspain.hexoplastia.com/projects/worldlocator to download a full packet with the required images.
include "worldlocator.inc.php";
// Creating worldlocator object
$worldlocator = new worldlocator;
// This class could act in different ways, this example shows how to show some data about the location in HTML, and embed an <img> tag wich show a map with your location marked at a time. See other examples.php for simpler uses.
// Querying our address and controlling possible errors
// Also, you could see here that you can perform a query by hostname instead of IP.
if (!$worldlocator->query_byhostname ("www.hexoplastia.com"))
echo $worldlocator->geterror ();
else
{
// If there are no errors ...
echo "<b>Address queried:</b> ".$worldlocator->location["TARGET"]."<br>";
echo "<b>Country:</b> ".$worldlocator->location["COUNTRY"]."<br>";
echo "<b>Latitude / Longitude:</b>: ".$worldlocator->location["LAT"]." / ".$worldlocator->location["LONG"]."<br>";
echo $worldlocator->embed_image ("day", "arrow", "border-style: dashed; border-width: 1px;");
}
?>
</BODY>
</HTML>
|