Kiko has asked for the wisdom of the Perl Monks concerning the following question:
my ($order_num) = sprintf "%lx",time; # Generates the order number # Adds ON (Order Number) infront of the generated number and makes eve +rything upper case $order_num = uc("ON$order_num"); my ($reg) = $dbh->prepare('INSERT INTO registrations (order_num, custo +mer_id, payment_type, icode) VALUES (?, ?, ?, ?)'); foreach my $t (@icodes) { $reg->execute($order_num, $customer_id, 'CREDIT', $t); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Inserting more than one entry into a MySql DB
by dws (Chancellor) on Feb 01, 2002 at 19:14 UTC | |
by Kiko (Scribe) on Feb 01, 2002 at 19:45 UTC | |
by dws (Chancellor) on Feb 01, 2002 at 21:27 UTC | |
|
Re: Inserting more than one entry into a MySql DB
by screamingeagle (Curate) on Feb 01, 2002 at 19:15 UTC | |
by Kiko (Scribe) on Feb 01, 2002 at 19:48 UTC | |
|
Re: Inserting more than one entry into a MySql DB
by chromatic (Archbishop) on Feb 01, 2002 at 19:16 UTC | |
|
Re: Inserting more than one entry into a MySql DB
by arturo (Vicar) on Feb 01, 2002 at 19:19 UTC |