Help for this page

Select Code to Download


  1. or download this
    my %actions = (
      invite => sub { ... },
    ...
    );
    my $action = $cgi->param('action');
    $actions{$action}->() if exists $actions{$action};