Just curious as to what is the 'Kohana' way of getting variables from the query string?
The best that I could come up with is parsing the $_GET var with the Arr class. Anybody have a better way to do this?
// foo?a=1&b=2
function action_welcome()
{
echo('a = '.Arr::get($_GET, 'a', '0'));
echo('b = '.Arr::get($_GET, 'b', '0'));
}