|< 1 2 >| | 11 Einträge, 2 Seiten |
1 2 3 4
my @params = qw( neu_titel meta_keywords description meta_page_topic webseite); foreach( @params ){ $cmd .= $dbh->quote( $query->{$_}; ) . ", "; }
1 2 3 4 5
my @params = qw( neu_titel meta_keywords description meta_page_topic webseite); foreach( @params ){ my $test = $query->{$_}; $cmd .= $dbh->quote( $test ) . ", "; }
$cmd .= $dbh->quote( $query->{$_}; ) . ", ";
QuoteCalled in a scalar context, it
returns the parameter list as a tied hash reference.
Changing a key changes the value of the parameter in the
underlying CGI parameter list. Called in a list context,
it returns the parameter list as an ordinary hash. This
allows you to read the contents of the parameter list, but
not to change it.
|< 1 2 >| | 11 Einträge, 2 Seiten |