Thread HTML::Template & DBI (7 answers)
Opened by pktm at 2004-12-29 22:38

renee
 2004-12-30 00:01
#630 #630
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Probier's mal so:
Code: (dl )
1
2
3
4
5
6
my $sth = $dbh->prepare($get_login_form) || die $dbh->errstr;
if( my $rv = $sth->execute ){
 $template->param( "inhalt" => (join"",$sth->fetchrow_array()) );
}
else{ die "Konnte login_form nicht aus Datenbank lesen"; }
$sth->finish();
\n\n

<!--EDIT|renee|1072735321-->
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread HTML::Template & DBI