Reputation: 4998
I would like to create an overview page for a user after he has submitted a form. Since, some other data, like logged in user data would be auto appended to the data the user submitted, I would like to create a page, which would be shown to the user before he completely submits the form, but after he has input the initial data.
How can this be accomplished in Zend Framework?
Upvotes: 0
Views: 85
Reputation: 164824
Capture the form data in a session namespace.
Eg
Upvotes: 2