Help for this page

Select Code to Download


  1. or download this
    my %departments;
    while( $sth->fetchrow() ) {
    ...
    my @departments = map { 
            { department => $_, classes => $departments{$_} } 
    } keys %departments;