in reply to Re: Re: Dereferencing an array of hash references
in thread Dereferencing an array of hash references
my @loop = db_retrieve_records();
should be
my @loop = @{ db_retrieve_records() };
Also, you need to learn the difference between my and local.
UPDATE
Fixed a typo.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Dereferencing an array of hash references
by fuzzyping (Chaplain) on Jun 26, 2002 at 20:25 UTC | |
by mfriedman (Monk) on Jun 26, 2002 at 22:05 UTC | |
by fuzzyping (Chaplain) on Jun 26, 2002 at 23:05 UTC |