Help for this page

Select Code to Download


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