In my projects i often use get params as a temporary way to test things with different values.
However it seems like you cannot access get params in code igniter?
I am aware I could build a param into my functions and pass the value as a url segment.
But i dont want to be doing that every time I wish to test something.
So,
is there any way to use get values in CI?
You can parse
$_SERVER['QUERY_STRING']and set it as$_GET: