I want to get query string variable value and allowed on config file for query string rule.
My Url :
http://localhost/Demo/admin_login/?mts=ok
I did in config file :
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = TRUE;
$config['uri_protocol'] = 'PATH_INFO';
In controller, I echo this
echo $_GET['mts'];
I got this error :
Message: Undefined index: mts