Welcome Guest, Not a member yet? Register   Sign In
Empty _GET array - unable to retrieve a 'get' variable
#4

[eluser]missionsix[/eluser]
Do you need GET's?


You can use the URI->segment() method to pull out parts of the url.

so you can do:

Code:
/controller/method/foo/bar/

And you can access the other segments with: $this->uri->segment(3) , for foo, and $this->uri->segment(4), for bar. This probably doesn't help you though.




In order to get Query Strings working on my box, i had to use this config setting:

Code:
$config['uri_protocol']    = "ORIG_PATH_INFO";

And then in my controller I used $_GET directly.


Messages In This Thread
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-11-2008, 05:43 PM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-11-2008, 10:12 PM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-12-2008, 05:18 AM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-12-2008, 03:35 PM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-12-2008, 04:12 PM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-13-2008, 09:37 AM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-13-2008, 01:24 PM
Empty _GET array - unable to retrieve a 'get' variable - by El Forum - 08-13-2008, 01:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB