> while (my @RACT_LOG_data=$sth_RACT_LOG->fetchrow_array){
>
>  $count_RACT_LOG_data++;
>  push our @KEY_SNR_RACT_LOG[$i], $RACT_LOG_data[0];
>  push our @DRAWING_RE_RACT_LOG[$i], $RACT_LOG_data[1];
>  push our @RCODE_ID_RACT_LOG[$i], $RACT_LOG_data[2];
>}

You missed a } for the for loop or missed it for the while loop.


>Thats how I try to get data out of my Arrays...
> for (my $i=0;$i<=$count_SNR_LOG_DATA,$i++){
> for (my $u=0;$u<=$count_RACT_LOG_data;$u++){
>  print "$KEY_SNR_RACT_LOG[$i][$u]\n";
>  print "$DRAWING_RE_RACT_LOG[$i][$u]\n";
>  print "$RCODE_ID_RACT_LOG[$i][$u]\n";

This is a calling to an Array Of Array, but you aren't construct
an AOA during the while loop....

Rgds,
Connie


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to