Help for this page

Select Code to Download


  1. or download this
    foreach my $k (keys(%LogHash)) {
       print LOGFILE $k, ",", $LogHash{$k}, "\n";
    }
    
  2. or download this
    %LogHash = ($HashKey => $SentRec = substr($_, 0, 20));
    
  3. or download this
    $LogHash{%HashKey} = "THEVALUE";
    
  4. or download this
    use Data::Dumper;
    print Dumper(\%hash);