in reply to Re: Getting Keys From Hash In a Hash
in thread Getting Keys From Hash In a Hash

Thank you!

My mistake was that when I used this:

keys %{ $form{$first_key} }
I was leaving out the $ in front of form, like this:
keys %{ form{$first_key} }

So I at least remembered some of what I was doing - forgot how to treat it within the brackets.