W dokumentacji widzę tylko takie rozwiązanie przy użyciu GET
$this->redirect('contact/thankyou?'.http_build_query($this->form->getValues()));
A jak to zrobić w sposób nie jawny tak jak przy metodzie POST?
coś w rodzaju tego
$this->redirect('contact/thankyou?'.http_build_query($this->form->getValues()));
class mymoduleActions extends sfActions { public function executeIndex(sfWebRequest $request) { $this->getResponse()->setSlot("foo", "12345"); } }
class mymoduleActions extends sfActions { public function executeIndex(sfWebRequest $request) { // Setting action variables to pass information to the template $this->setVar('foo', 'bar'); $this->foo = 'bar'; // Shorter version } }