Help for this page

Select Code to Download


  1. or download this
    ($endstore[$ctrend][0], $endstore[$ctrend][1],
     $endstore[$ctrend][2], $endstore[$ctrend][3],
     $endstore[$ctrend][4]) = @arr;
    
  2. or download this
    @{$endstore[$ctrend]}[0..3] = @arr[0..3];
    
  3. or download this
    $endstore[$ctrend] = [ @arr ];
    
  4. or download this
    push @endstore, [ @arr ];
    
  5. or download this
    while (my @arr = $sth2->fetchrow_array() ) {
        push @endstore, [ @arr ];
    ...
        .            "Field 3: $field3  Field 4: $field4  "
        .            "Field 5: $field5\n";
    }