# html
# Note that if the user selects the checkbox, the value is 'on'
I'm logging in from home
# cgi
use strict;
use CGI qw(:cgi);
use Data::Dumper;
my $place = seewhatsthere(
data => param('place'),
field => 'Place',
);
sub seewhatsthere {
my %hash = @_;
html_start();
print Dumper(%hash);
exit(0);
}