[eluser]Junaid Atique[/eluser]
i have the following settings in config file
Code:
$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = FALSE;
but in order by get query strings i am using the following code
Code:
parse_str($_SERVER['QUERY_STRING'],$_GET);
I've placed the above code in every controller in which i am using
Now this works outstanding on my local machine but when i upload this thing on blue host server it is not working. Another thing is I am using HMVC and have my own route file.
Please help me, its urgent.