#!/usr/bin/perl use strict; # prevent Perl from creating undeclared variables AND control variable scope use CGI qw(:standard -debug); use CGI::Carp(qw/fatalsToBrowser/); ## Fatal Errors to Browser for debugging my $q = new CGI; ## Declare a CGI object my %cgi_vars = $q->Vars; ## Read all your form variables into a hash in one shot. # It's always a good idea to check any