http://www.perlmonks.org?node_id=562400


in reply to Beginner question about displaying database contents using HTML Template

HTML::Template can handle an AoH (array of hash references) which can easily be returned from a DBI query like this:
my $aoh = $dbh->selectall_arrayref($sql,{Slice=>{}});
  • Comment on Re: Beginner question about displaying database contents using HTML Template
  • Download Code