in reply to Re: Accept array from Form and put in DB
in thread Accept array from Form and put in DB

@quantity = map $dbh->quote($_) , @quantity
Or, more efficiently:
$_ = $dbh->quote($_) for @quantity;

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.