|< 1 2 3 >| | 23 Einträge, 3 Seiten |
Quote
1
2
3
4
5
+----------------+----------------------+
|email |URL |
+----------------+----------------------+
|test@example.org|http://www.example.org|
+----------------+----------------------+
1
2
3
4
my %config = ();
my $sth = $dbh->prepare("SELECT * FROM event_config") or die $dbh->errstr;
$sth->execute() or die $dbh->errstr;
$config{$key} = $wert while my ($key,$value) = $sth->fetchrow_array();
|< 1 2 3 >| | 23 Einträge, 3 Seiten |