Hey all I know I have been told but I can't seem to access this hash. Can anyone look and see why I can't print out any values. The print item statement works and prints out the first level of the hash. I send in a pointer to $data and $rule.
sub COMMENTSYNC{ my($rule,$data) = @_; my($crule,$temp,@map,$count); foreach my $item (keys %{$$data}){ print %{$$data{$item}{'rule_desc'}} . "\n"; #print $item . "\n"; } Thanks