Help for this page

Select Code to Download


  1. or download this
    sub select_your_school {
        my $namesref = shift;
    ...
                               -values =>  \@menuitems ,
                              }),
              ....
    
  2. or download this
    sub select_your_school {
        my $namesref = shift;
    ...
                  -values =>  [ sort keys %$namesref ],
                              }),
              .....
    
  3. or download this
    # Sort by alpha
    sort keys %$namesref
    ...
    sort { $a <=> $b } keys %$namesref
    
    # etc...