- or download this
$player_info{$ipaddr} = [$nickname, $userid, $player_req];
for $key ( keys $player_info) {
print @{$player_info{$key}}
}
- or download this
push @{$player_info{$ipaddr}} , ($nickname,$userid,$player_req);
print ${$player_info{$ipaddr}}[0]; ## gives the nickname ...
- or download this
-----------------------------------
--the good, the bad and the physi--
-----------------------------------