Help for this page

Select Code to Download


  1. or download this
    my %records;
    while( my $row = $sth->fetchrow_hashref ) { 
        push @{ $records{ $row->{start_date} } }, $row;
    }
    
  2. or download this
    foreach my $date( sort keys %records ) { 
        print $date, "\n";
    ...
            print "\n";
        }
    }