in reply to Variable Unusable?
you probably meant \%section_intpush (@detected_sections, %section_int);
another error here
an array in scalar context returns the number of elements in the array, you probably meant \@detected_sections, and you probably meant$report->{'sections'} = @detected_sections;
foreach ( @{ $self->{'sections'} }) { ..use $_ here to do stuff.. }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Variable Unusable?
by RobinV (Sexton) on Dec 29, 2009 at 09:28 UTC | |
by Mr. Muskrat (Canon) on Dec 29, 2009 at 19:43 UTC |