The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestGeoIP::name;
use Apache::Geo::IP;
use strict;
use warnings FATAL => 'all';

use Apache::Constants qw(OK);

sub handler {
  my $r = Apache::Geo::IP->new(shift);
  $r->content_type('text/plain');
  $r->send_http_header;
  my $ip = $r->args;
  my $country = uc($r->country_code_by_name($ip));
  
  $r->print($country);
  
  OK;
}
1;

__END__