http://qs321.pair.com?node_id=315948


in reply to How do I make an array of hashes?

If the hash has already been created, you can store references to the hash in arrays:

push(@array, \%some_hash);

and then when you pop them off:

$hash_ref = pop(@array);

you'll get a scalar back which can be dereferenced to get at the values of the hash:

$value = $hash_ref->{'key'};