Help for this page

Select Code to Download


  1. or download this
    my @missing;
    foreach my $f (@fields) {
    ...
        push(@missing, @acct_fields{$f});
      }
    }
    
  2. or download this
    if ($#missing > -1) {
      $" = ', ';
      do something....
    }