Help for this page

Select Code to Download


  1. or download this
    foreach $subsubkey (sort %{$tophash{$value}{$value2}} ) 
               {
                   print "$subsubkey";
               }
    
  2. or download this
    foreach $array_value ( @$tophash{$value}{$value2} ) {
        print $array_value;
    }