Hello All,
I am still having trouble printing out a second lot of hash keys in a
hash of a hash. Here is what I have so far. Any ideas or suggestions
will be greatly appriciated...
%users = (
'user1' => {
'Fullname1' => 'YES'
},
'user2' => {
'Fullname2' => 'NO'
},
'user3' => {
'Fullname3' => 'YES'
}
);
Now when I do the following...
foreach $username (keys %users) {
print $users{$username};
}
It prints the following...
HASH(0x81553c0)HASH(0x80f56f0)HASH(0x8155360)
I really don't know much about hash references but could some one give
me a hand trying to figure this one out?
thx,
Dan
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]