Help for this page

Select Code to Download


  1. or download this
    sort { $hoa{$a}->[0] cmp $hoa{$b}->[0] } keys %hoa;
    
  2. or download this
    my @sorted_keys = sort { $hoa{$a}->[0] cmp $hoa{$b}->[0] } keys %hoa;
    foreach my $row_key ( @sorted_keys ) {
    ...
        }
        print "</tr>\n";
    }