Help for this page

Select Code to Download


  1. or download this
      push @{$testcenters{$o_city}, $o_tcenter;
    
  2. or download this
    for my $city (sort keys %testcenters) {
      for my $center (sort @{$testcenters{$city}}) {
        print "$city: $testcenters<br>";
      }
    }