How to use request data in a component in CakePHP
“Add this in your component
public function initialize(Controller $controller) { $this->controller = $controller; }
Then access the request data in the component as follows:
$this->controller->request->data
“
Leave a Reply