Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare(<<SQL);
        
    ...
    
    $sth->execute($start_date, $end_date);
    my $res = $sth->fetchall_arrayref;
    
  2. or download this
    $sth = $dbh->prepare(<<SQL);
        
    ...
    $sth->execute($end_date);
    my $res = $sth->fetchall_arrayref;