I have the following code which works ok but the lengths of the arrays vary. I need to get the length ($LENF) of the actual array based on the reference name if possible.
Keith
Code:
$WHICH_TABLE=1;
$LENF=31;
my @SOURCE_TEXT= (\@DUMMY, \@PTEXT, \@CTEXT, \@BTEXT);
for($x=0; $x<$LENF; ++$x){
print "$x - $SOURCE_TEXT[$WHICH_TABLE][$x]<br>";
}
Keith