topical media & game development
professional-search-11-seophp-geo-targeting-test.php / php
<?php
// load the SimpleGeoTarget library
require_once 'include/simple_geo_target.inc.php';
// display geo-targeted welcome message
if (SimpleGeoTarget::isRegion("RO"))
{
echo "Welcome, visitor from Romania!";
}
else if (SimpleGeoTarget::isRegion("US"))
{
echo "Welcome, visitor from United States!";
}
else if (!SimpleGeoTarget::getRegion())
{
echo "Welcome, visitor! We couldn't find your country code!" ;
}
else
{
echo "Welcome, visitor! Your country code is: " . SimpleGeoTarget::getRegion();
}
?>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.