8 Einträge, 1 Seite |
1
2
3
4
my $sth = $dbh->prepare($get_login_form) || die $dbh->errstr;
unless( my $rv = $sth->execute ){ die "Konnte login_form nicht aus Datenbank lesen"; }
$template->param( "inhalt" => join"",@$sth->fetchrow_arrayref() );
$sth->finish();
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();
@{$sth->fetchrow_arrayref()}
8 Einträge, 1 Seite |