- or download this
$player_info{$ipaddr} = [ qw($nickname $userid $player_req) ];
# and...
$player_info{$1}
= [ qw($value1 $value2) ];
- or download this
$player_info{$ipaddr} = [ $nickname, $userid, $player_req ];
# and...
$player_info{$1}
= [ $value1, $value2 ];
- or download this
while ( (my $nkey, my @nvalue) = each %player_info ) {
#stuff
}
- or download this
while ( (my $nkey, my $nvalue) = each %player_info ) {
# stuff with $nvalue->[$ndx]
}