in reply to Form to let web user input their own data to another page
If this form's data is to be used only on the next page, and not in the future, then CGI.pm is all you will probably need.
If, however, you intend this data to be used for more than just one post to a page, you will need to look into a method of saving the data to a file or database, and then reading it back.
CGI.pm will do the saving to a FILEHANDLE for you, but designing a good text or relational database would probably be a better way to go.
For TEXT database use, from what I have seen here, Text::CSV and Text::xSV seem to be the modules of choice.
For RELATIONAL database use, DBI.pm is what I use with a MySQL database on Linux.
So, those modules, combined with what you find here on PerlMonks will get you there. Good Luck!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Form to let web user input their own data to another page
by murphya (Sexton) on Apr 22, 2001 at 03:51 UTC | |
by Xxaxx (Monk) on Apr 22, 2001 at 23:41 UTC |