Help for this page

Select Code to Download


  1. or download this
    push @{$p2i{sp}}, $ipr;  # $ missing for key reference
    
  2. or download this
    push @{$p2i{$sp}}, $ipr;
    
  3. or download this
    print "$key\t$p2i{$key}\n";
    
  4. or download this
    print "$key\t@ {$p2i{$key} }\n";  # need @ to dereference array
    
  5. or download this
    if (exists $p2i{$user}) {
            print "$user is in the hash. \n";if (exists $p2i{$user}) {
            print "$user is in the hash. \n";
    
  6. or download this
    if (exists $p2i{$user}) {
            print "$user is in the hash. \n";