View Single Post
  #1 (permalink)  
Old 06-23-2008, 02:47 PM
gon gon is offline
Junior Member
 
Join Date: Jun 2008
Posts: 4
Default 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
Reply With Quote