peppiv has asked for the wisdom of the Perl Monks concerning the following question:
my @quantity = param('quantity'); my $item_number = param("item_number"); #my @item_number = param("item_number");Not used until I understand ho +w to pass one array in first. my $quantity = $dbh->quote( $quantity ); my $item_number = $dbh->quote( $item_number ); foreach $quantity (@quantity ) { my $sql = qq/ INSERT INTO needed_details (quantity, item_number) VALUES ($quanti +ty, $item_number) /; my $rv = $dbh->do( $sql ); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Accept array from Form and put in DB
by fruiture (Curate) on Dec 09, 2002 at 15:27 UTC | |
by merlyn (Sage) on Dec 09, 2002 at 15:39 UTC | |
Re: Accept array from Form and put in DB
by slife (Scribe) on Dec 09, 2002 at 15:52 UTC | |
by peppiv (Curate) on Dec 09, 2002 at 16:05 UTC | |
Re: Accept array from Form and put in DB
by peppiv (Curate) on Dec 09, 2002 at 16:00 UTC | |
by jeffa (Bishop) on Dec 09, 2002 at 16:20 UTC | |
by peppiv (Curate) on Dec 09, 2002 at 16:39 UTC |