<< Back
How to go back to the previous page in Cakephp
How to go back to the previous page in Cakephp
How to go back to the previous page in Cakephp
In your controller use this to go back to the previous page:
$this->redirect($this->referer());
or use the referer's parameters like this:
$this->redirect($this->referer(array(‘action’=>’index’), true));