in reply to Basic Array Question
In fact, you might want to use more descriptive names in your while statement:
my %freq; while (my ($page, $hits) = $cursor->fetchrow_array) { $freq{$page} = $hits; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Basic Array Question
by bart (Canon) on May 11, 2006 at 09:53 UTC | |
by japhy (Canon) on May 11, 2006 at 13:19 UTC | |
|
Re^2: Basic Array Question
by leocharre (Priest) on May 10, 2006 at 17:28 UTC |