in reply to Re^2: condensing code
in thread condensing code

Awesome thanks... Now how would I access the 1st, 2nd or 3rd set of data from that array? Thanks again.

Replies are listed 'Best First'.
Re^4: condensing code
by Cristoforo (Curate) on Sep 08, 2006 at 21:37 UTC
    for my $i (0..$#store_get) { print "@{ $store_get[$i] }\n" }
    This reads

    for my index from first to last (index)<p> print each group of (30)

    The @{ . . . } notation says treat $store_get[$i] as an array reference, which the 'notation' dereferences.

    You would find it helpful to read perldsc, perllol which go into detail about how to work with arrays of arrays.