cakephpでコントローラでのパラメータの受け取り方メモ
■POSTでのパラメータ「id」
$this->request->data['id'];
■GETでのパラメータ「id」
$this->request->query['id'];
■URLにパラメータが含まれてる場合
$this->request->pass[0]; // 1
※http://example.com/controller/action/1の場合
■POSTでのパラメータ「id」
$this->request->data['id'];
■GETでのパラメータ「id」
$this->request->query['id'];
■URLにパラメータが含まれてる場合
$this->request->pass[0]; // 1
※http://example.com/controller/action/1の場合