Help for this page

Select Code to Download


  1. or download this
    foreach my $network (keys %urls) {
        foreach my $key (keys %{$urls{$network}}) {
            print "$key<br/>";
        }
    }
    
  2. or download this
    foreach my $network (values %urls) {
        foreach my $key (keys %$network) {
            print "$key<br/>";
        }
    }