Help for this page

Select Code to Download


  1. or download this
    if (scalar @row1 == "6") {
       @entry1 = (@required , @row1);
    ...
                   .  "and will note be re-submitted. <br>"
       }
    };
    
  2. or download this
    if (@row1 == 6) {
       my @entry1 = (@required , @row1);
       ...
    }
    
  3. or download this
    for my $row ( 1 .. $#rows ) {
       if (@{$rows[$row]} == 6) {
    ...
          ...
       }
    }