$sth = $dbh->prepare('SELECT Author, DateTime, Message, ID FROM forum_posts ORDER BY ID DESC'); $sth->execute(); my $records = $sth->fetchall_arrayref( undef, 50 ); #only get 50 posts for (@$records) { RenderMessage($_) }