[eluser]fensen[/eluser]
CodeIgniter is SO powerful!
If you want to use URI Segments and Query Strings in the same project, go to
Code:
APP/config/config.php
and change:
Code:
$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE;
This will allow you to use URI Segments, URI Segments parameters and Query String parameters!
e.g.
Code:
/controller/method/param1/param2/?param3=xxx¶m4=yyy
This has just saved my life!!!