GeoIP Test
hostname = "www.yahoo.com" ;
if( IsDefined( "FORM.hostname" ) and not IsDefined("FORM.values") )
{
hostname = FORM.hostname ;
}
if( IsDefined("FORM.submit") )
{
geoip.set_db_path("c:\Program Files\GeoIP\");
geoip.find_by_name(hostname);
city = geoip.city;
WriteOutput( "hostname: " );
WriteOutput( hostname );
WriteOutput( "
" );
WriteOutput( "GeoIP City Lookup : " );
WriteOutput( city );
WriteOutput( "
" );
}