1. User fills the form.
   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 [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to