Help for this page

Select Code to Download


  1. or download this
    my @test_centers_sorted_by_city_then_name = sort { $centercity{$a} cmp
    + $centercity{$b} || $a cmp $b } keys %centercity;
    
    ...
       print "$centercity{$center}<br>";  # output city where test center 
    +is located
       # ... output other stuff too
    }