03-13-2014,Bob Jones,Pending
03-13-2014,George Manuel,Pending
03-13-2014,Frankie Avalon,Approved
03-13-2014,Robert Garcia,Approved
03-14-2014,John Doe,Pending
####
$sth = $dbh->prepare(
"
SELECT date,name,status
FROM requests
WHERE date >= '$date'
ORDER BY date
"
);
$sth->execute();
my $reqs;
push @{$reqs}, $_ while $_ = $sth->fetchrow_hashref();
####
my $template = HTML::Template->new(filename => 'approve.html');
$template->param(REQS => $reqs);
print $template->output();
####
####
####
{
'03-13-2014' => 'Frankie Avalon,Robert Garcia',
};