[eluser]Narkboy[/eluser]
Code:
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
This is the config section of CI2.02. Notice the addition of 'allow get array'? You want that TRUE, but query strings FALSE.
Under 2.02, get_array allows you to pass data via GET - query_strings allows you to call controllers and functions via GET. If query_strings is TRUE, then CI looks for the URL as GET rather than segments.
Make sense?
/B