in reply to Re^3: Hash Value via Data::Dumper
in thread Hash Value via Data::Dumper
Yes, no issue on that, however the count has to be within the loop, as it performs a lookup over the %users hash. This is the most import piece, as it establishes the relationship.
if (defined $users{$conn1}) # search to check existing of conn to uid. { if ($num{$uid} > 1) { print "bad users"; ## user group add command. } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Hash Value via Data::Dumper
by hdb (Monsignor) on Jun 12, 2013 at 20:20 UTC | |
by Anneq (Vicar) on Jun 13, 2013 at 20:19 UTC | |
|
Re^5: Hash Value via Data::Dumper
by hdb (Monsignor) on Jun 12, 2013 at 18:48 UTC |