How can I access a GET request in CAKEPHP ?

If I am passing a variable in the url

http://samplesite.com/page?key1=value1&key2=value2

Should I use $_GET or $this->params to get the values in controller? What is the standard in CAKEPHP ?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

The standard way to do this in Cake is to use $this->params.

$value1 = $this->params['url']['key1'];
$value2 = $this->params['url']['key2'];

According to the CakePHP book, "the most common use of $this->params is to access information that has been handed to the controller via GET or POST operations."

See here.

link|improve this answer
Thanks Dude... Shall i avoid to use $_GET in cakephp? – Cakephp.Saint May 26 '11 at 6:37
1  
@cakephp.saint Yeah, I typically don't access $_GET or $_POST directly when i'm working in Cake. I just updated my answer with a link to the manual. – declan May 26 '11 at 6:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.