Help for this page

Select Code to Download


  1. or download this
    my @array = ('POST100','POST5','POST10','POST1')  #etc
    my %array = ('POST100' => 1, 'POST5' => 1, ...) #etc
    
  2. or download this
    foreach my $postNum (sort @array) {
      #process post #X
    }