Help for this page

Select Code to Download


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