Hello!
So, the question is: How to use $_GET in fuelphp?
I have URI: http://www.somapage.com/ins/fortumo
I need to send $_GET query, some thing like that: http://www.somapage.com/ins/furtumo?sms=yes&paid=yes
'ins/fortumo/(:any)'=> array(array('GET', new Route('ins/fortumo/$1'))),
Class Controller_Ins extends Controller_Rest
{
public function action_fortumo()
{
var_dump($_GET);
}
}
And var_dump shows -> nothing.
What is wrong in my code?