I am a newbie with zend. On the web-site i am building using zend/php, people can come and write a review. By default, we allow user to write a review without checking if the user is registered, but before submitting we ask them to either login or create a account(deliberate strategy so that more people write review). In those cases i need to keep the data entered by the user intact to be entered into our database just after login. How do i do that?
One way I can think of is to store all the user entered data into session variables. Are there are more smart/intelligent or accepted ways to do this ?