Help for this page

Select Code to Download


  1. or download this
    my %dispatch = (
       home   => \&default,
    ...
       my ($action, $dbh) = shift;
       ...
    }
    
  2. or download this
    my %dispatch = (
       (map { $_ => \&default } qw(
    ...
       samp => sub { \&samples($dbh) },
       ...
    );