php - Cakephp How to retrieve data from GET submit -


i'm passing search data on method that:

example.com/posts/?q=foo 

i'm trying retrive data on controller doing this:

$this->params['q']; 

but not working.

cakephp specifice function accessing query strings:

$this->request->query['q']; 

reference: link.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -