GeoIP Test
hostname = "www.yahoo.com" ;
if( IsDefined( "FORM.hostname" ) and not IsDefined("FORM.values") )
{
hostname = FORM.hostname ;
}
if( IsDefined("FORM.submit") )
{
geoip.loadDataFile("c:\Program Files\GeoIP\GeoIPDemo.dat");
country_code = geoip.country_code_by_name(hostname);
WriteOutput( "hostname: " );
WriteOutput( hostname );
WriteOutput( "
" );
WriteOutput( "ISO 3166 Country Code: " );
WriteOutput( country_code );
WriteOutput( "
" );
}