in reply to Accessing deeply burried arrays of hashes

In addition to what everyone else commented on above, you also spelled your scalar variable $value1 in the beginning of the snippet:
$tophash{$value1}{$value2} = ...
and $value later on in the loop where you are trying to reference it:
foreach $subsubkey (sort @{$tophash{$value}{$value2}} )


ryddler

Replies are listed 'Best First'.
Re (tilly) 2: Accessing deeply burried arrays of hashes
by tilly (Archbishop) on Jan 25, 2001 at 07:00 UTC
    Which the handy little spellchecker would have caught... :-)