How can I redirect to another action passing 2 or more parameters?
This code:
$this->redirect('input/new?year=' . $year . '&month=' . $month);
Results in URL:
http://.../input?year=2009&month=9
Well, that's normal, "redirect" redirect to an absolute URL. You can do that:
$this->redirect($this->generateUrl('default', array('module' => 'input', 'action' => 'new', 'year' => $year, 'month' => $month)));
2.1m questions
2.1m answers
60 comments
57.0k users