When the user clicks next button, form fields are saved to the
session variable.
// Save to session
$this->Session->write('mydata', this->data);
2. User is displayed with the data he entered before to confirm.
3. If the data is incorrect (Recall controller) something like
redo_edit action:
// Restore from session
$this->data = $this->Session->read('mydata');
// Display edit page
<snip>
Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment