example: verify.php?uid=5&token=TOKEN
the same as: verify/5/TOKEN
?
|
|
|
|
|
|
|
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
|
||
|
|
|
|
You could transform the 1st to the 2nd one by doing this
Otherwise you'd use the input library like so
Depending on what settings you have in config/config.php, you may be automatically making it safe from XSS attacks. |
||||
|