Derek,
Code Igniter works with either URI Segments OR Query Strings.. not both.
If you enable query strings, then the URI segments stuff is disabled. So you can’t use segments or the any URL helper.
You would then have to use query string vars for the entire app! e.g.
http://localhost/index.php?c=controller&m=method
-
This thread is talking about using both segments and query strings together. e.g.
http://localhost/index.php/controller/method?query=data
This, as alan.briolat said, can be done using $_REQUEST[] array (as CI doesn’t unset this like it does the $_GET array).
-
Frameworks like Code Igniter are supposed to help us code faster and better.. Not put obstacles in our way and force us to waste time getting around them.
