Help for this page

Select Code to Download


  1. or download this
    my $date;
    my $lastdate = '';
    ...
       $lastdate = $date;
    }
    print_report( $lastdate, $logdata );
    
  2. or download this
      ( $date, my $stuff ) = parse( $_ );
      $logdata .=  $stuff;
      # etc.
    
  3. or download this
    if ( $lastdate and $lastdate ne $date ) {
    
  4. or download this
    my $date;
    my $lastdate = '';
    ...
       }
       $lastdate = $date;
    }