# 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); } #### # Dumped $VAR1 = 'Place'; $VAR2 = undef; $VAR3 = 'data'; $VAR4 = 'field'; #### # Dumped $VAR1 = 'data'; $VAR2 = 'on'; $VAR3 = 'field'; $VAR4 = 'Place';