Hello,
Do you think it's possible to add a button "I'll finish later"?
Or save datas in a cookie for example.
Do you think it's possible to add a button "I'll finish later"?
Or save datas in a cookie for example.
Hi oweb,
You can do something like that. Add a second submit button and use that to mark the record as 'partly complete'. You can also break a long form into pages and save the data between each page.
I think it's mot practical to save any data into a database table if there is likely to be a break in submission. You could use Cookies, or the User session but they are only useful if the user comes back on the same compuer (for cookies) or inside the next 15 minutes or so (in the case of the User session).
Bob
You can do something like that. Add a second submit button and use that to mark the record as 'partly complete'. You can also break a long form into pages and save the data between each page.
I think it's mot practical to save any data into a database table if there is likely to be a break in submission. You could use Cookies, or the User session but they are only useful if the user comes back on the same compuer (for cookies) or inside the next 15 minutes or so (in the case of the User session).
Bob
This topic is locked and no more replies can be posted.