Joel R. Stout wrote:
: #But when I try to pluck a fields value out, I get hosed
:
: foreach $account (keys %Accts) {
: print "Fields: \n";
: foreach $name (keys $Accts{$account}) {
: #here's where my brainstorming turns into a light sprinkle
: #there's a scalar here ($Accts{$account}) but I need a hash at this
: point, correct?
Correct:
foreach $name ( keys %{$Accts{$account}} ) {
-- tdk
- Records put into a hash - Beginner Question Stout, Joel R
- RE: Records put into a hash - Beginner Question Timothy Kimball
- RE: Records put into a hash - Beginner Question Stout, Joel R
- RE: Records put into a hash - Beginner Question Timothy Kimball
- Re: RE: Records put into a hash - Beginner Question Eduard Grinvald
