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