in reply to Re^4: inserting and showing data from an MS Access database
in thread inserting and showing data from an MS Access database
But yeah, don't parse the data yourself to begin with -- use CGI:use Data::Dumper; print Dumper \%FORM;
use CGI qw/:standard/; $sth_ins->execute( param('firstname'), param('lastname'), param('state +'), param('country') );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: inserting and showing data from an MS Access database
by Anonymous Monk on Apr 12, 2006 at 22:10 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:26 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:50 UTC |