I am programming an article management system.
On the form where an user can register an article, there should be a link to a page where the user can add authors for this article (and also register new authors).
My question is, is there a possibility to store the data the user already wrote into the article registration form, so that when he comes back from the author management page, he will be able to resume his typing?
I have tought of this: when leaving the article page to go to the authors page, the form is actually sumbitted and stored in my db with a "unfinished" flag.
But this would mean that the "Add authors..." link is also a submit button (I can do this using JavaScript), but then I would like to submit this form differently than when really clicking on th "Submit" button...
This is growing complicated and before I begin to programm this, I wanted to know if there was an easier way to do this. Any clue?
Thanks!
T.