Help for this page

Select Code to Download


  1. or download this
        while ( (my $key, my $value) = each %partners) {
            if ($item eq $key) {
    ...
                push (@allmembers, @partners_split);
            }
        }
    
  2. or download this
    while ( (my $key, my $value) = each %partners) {
        if ($item eq $key) {
    ...
            ##another, different action;
        }
    }