in reply to Re^2: retrieving similar form params
in thread retrieving similar form params
Now show us a code snippet with a populated version of param and a print that generates the sort of data you want to push into the DB. Something like:
use strict; use warnings; my %param = ( fname1 => "Fred", lname1 => 'Bloggs', email1 => 'fred@xyzzy.com', fname2 => "Joe", lname2 => 'Bloggs', email2 => 'joe@plugh.com', fname3 => "Sue", lname3 => 'Brown', phone1 => '555-1234-567', ); my @entries; #generate entries from parameters print join "\n", @entries; __END__
Prints:
Bloggs,Fred,,fred@xyzzy.com Bloggs,Joe,,joe@plugh.com Brown,Sue,555-1234-567,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: retrieving similar form params
by Anonymous Monk on Nov 27, 2005 at 23:43 UTC |