Help for this page

Select Code to Download


  1. or download this
    my @users = @$user_hash{SERVICE}->{$service}->{USER};
    
  2. or download this
     my $users = @$user_hash{SERVICE}->{$service}->{USER};
    
  3. or download this
    foreach my $this_user (@users){
    
  4. or download this
    foreach my $this_user (@{$users}){