in reply to Re^4: Parsing hash from XML::Simplein thread Parsing hash from XML::Simple
Please note that NetWallah suggested
foreach my $vals (values %{ $xml }) { [download]
and not what you wrote:
foreach my $vals (%{$xml}) { [download]
The two are distinctly different.