Help for this page

Select Code to Download


  1. or download this
    $testHash{$year}{$status} = $getNumbers;
    
    ...
    -> $testHash{2014}{Closed} = 2;
    -> $testHash{2014}{Cancled} = 3;
    etc.
    
  2. or download this
    foreach $key (keys %testHASH){
     foreach $key2 (keys %{$testHASH{key}}{
    ...
    print $outfile "$line\n";
    }
    }