in reply to Using perl to Create a Table in a Database
You're building your HTML table with rows like:
<tr><td><input type="text" name="fieldname" />
The name value should probably have a '$' in front:
<tr><td><input type="text" name="$fieldname" />
Then, in your second script, read the params in a loop in much the same way as you wrote the names in the first script.
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using perl to Create a Table in a Database
by mynameisG (Novice) on Nov 04, 2010 at 15:03 UTC | |
by kcott (Archbishop) on Nov 04, 2010 at 15:27 UTC | |
by mynameisG (Novice) on Nov 04, 2010 at 16:51 UTC | |
by kcott (Archbishop) on Nov 04, 2010 at 17:57 UTC | |
by mynameisG (Novice) on Nov 04, 2010 at 22:13 UTC | |
by mynameisG (Novice) on Nov 04, 2010 at 17:11 UTC |