Keeping data when doing _forward()
Hi all!
I've got a controller showing a form at indexAction.
The form goes to showresultsAction via POST. This action validates data and makes a _forward() to "index".
The problem is that the validation data is lost, and also view properties: if I set $this->view->foo = "bar", it won't be set after doing _forward.
Where should I keep validation data for it to be passed to the form?
The Registry doesn't look like a good place to me for this.
TIA
|