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

Reply via email to