in reply to cleaning up multiple lines...
while ( $rec = $sth->fetchrow_hashref() ) { push @records, $rec; } @records now contains: name | passed | failed | pending ------+--------+--------+--------- xxx | null | 2 | null xxx | 30 | null | null xxx | null | null | 10 yyy| 6 | null | null
|
|---|