vote up 0 vote down star

example: verify.php?uid=5&token=TOKEN

the same as: verify/5/TOKEN

?

flag

0% accept rate

2 Answers

vote up 0 vote down

In Kohana "issuing a parameter via a URL" will show up as a parameter to your controller function. "Issuing a paramter via query strings" is available via the input library

If the parameter is core to the identity of your resource... keep it in the url. Example: www.example.com/our/presidents/Barack_Obama

Your controller code controllers/our.php

class Our_Controller {
    public function presidents($full_name)
    {
        ...
    }
}
link|flag
vote up 0 vote down

You could transform the 1st to the 2nd one by doing this

class Something_Controller {

    public function verify($uid, $token) {
        // whatever

    }


}

Otherwise you'd use the input library like so

$uid = $this->input->get('uid');

Depending on what settings you have in config/config.php, you may be automatically making it safe from XSS attacks.

link|flag
is there any siginificant difference between getting it via get and getting it via segments? – Ygam Aug 12 at 0:29
Not really - You just specify it differently. The arguments in the forward slash mapping become arguments to your method - however the GET vars function as expected. – alex Aug 12 at 4:18

Your Answer

Get an OpenID
or

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