my $sth = $dbh->prepare(qq{select * from `sometable` where `id` = ?}); $sth->execute($some_string); my $data = $sth->fetchrow_hashref(); $sth->finish(); my $page_title = $data->{title}; my $html_content = $data->{html_src}; my $last_edited = Format_Date_For_Viewing($data->{last_modified},"long_date"); # Use the HTML Content in $html_content with the HTML::Template??