in reply to Re^2: collect all numeric form params and update database
in thread collect all numeric form params and update database
Note that DBI still uses OOP :)foreach my $p( grep /^\d+$/, param() ) { # find the form value my $v = param( $p ); # execute the query $sth->execute( $v, $p ); }
|
|---|