in reply to Re: Re: Database issues
in thread Database issues
Does this help?foreach $name (qw(George Bill Pocahantas Godzilla)){ $stats{$name} = int rand(10); # give the name a random value } while(my ($key,$value) = each %stats){ print "$key is $value years old\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Database issues
by Anonymous Monk on Apr 09, 2003 at 16:31 UTC | |
by CountZero (Bishop) on Apr 09, 2003 at 20:42 UTC |