new_2_perl has asked for the wisdom of the Perl Monks concerning the following question:
I have just gotten some feedback from the user about a perl/cgi form I made for them. The problem is at the end of the form (the submission page) they want to see all the information that they entered the whole time. Right now it just displays the current form they filled out so if they went back and refilled out something else the submission page would just show the most recent form they filled out. Not a collection of the previous form and the current one they just did.
I guess I need to save data in a file or make a temporaray DB table with a transaction id or something so I can save all the data on one particular transaction for the whole form entry process. Because right now I'm just passsing the form data with hidden html tags so I can only build a table at the end of the form for the most recent form they filled out. It's not a collection of the forms for a particular transaction.
My question is what is the best way to do this. Just pass all the data to a file or make a DB table. I know I can't use hidden tags anymore to accomplish this task so I need a more efficent idea
Thanks,
Edit by ar0n
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: encoding/decoding perm storage
by Zaxo (Archbishop) on Aug 01, 2001 at 13:59 UTC | |
|
Re: encoding/decoding perm storage
by trantor (Chaplain) on Aug 01, 2001 at 15:40 UTC |