Help for this page

Select Code to Download


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