i don't know exactly what they are called but i just want the keys/names for the hash in:
[tt]$obj->{'HASH'}[/tt]
i tried this:
but that doesn't seem to work.
---------------------------------------
If you helped... thx.
[tt]$obj->{'HASH'}[/tt]
i tried this:
Code:
my %hash = $obj->{'HASH'};
foreach my $key (keys %hash)
{
print $key.' => '.$hash{$key};
}
but that doesn't seem to work.
---------------------------------------
If you helped... thx.