Member
norbert
What are different ways to access the parameters in CakePHP?
julio.mcglynn
Following ways:
1 2 3
$this->request->controller; $this->request['controller']; $this->request->params['controller'];