- or download this
my $roster_entry;
my %roster_entries;
...
$roster_entry->param('full_name', $full_name);
$roster_entries{$full_name} = $roster_entry;
}
- or download this
my $query = CGI->new();
if ($query->param('full_name')) {
...
print p(submit("Submit"));
print end_form, end_html;
}
- or download this
$full_name = Last1, First1
$roster_entries{Last1, First1}->param('address') = ->param('address')
- or download this
$full_name = Last1, First1
$roster_entries{Last1, First1}->param('address') = 111 First Street
- or download this
#!c:/perl/bin/perl.exe
...
print h1("Unexpected error"), p($error), end_html;
die $error;
}