Welcome Guest, Not a member yet? Register   Sign In
How I got around $_GET restrictions
#2

[eluser]ChrisMiller[/eluser]
Or you could just change your config variable uri_protocol from auto to paht info
Code:
$config['uri_protocol']    = 'PATH_INFO';

and then add this to your controller or wherever you want to repopulate the _GET variable
Code:
parse_str($_SERVER['QUERY_STRING'],$_GET);
var_dump($_GET);

But your way is just a lil longer thats all....


Messages In This Thread
How I got around $_GET restrictions - by El Forum - 04-04-2011, 10:13 PM
How I got around $_GET restrictions - by El Forum - 04-04-2011, 11:20 PM
How I got around $_GET restrictions - by El Forum - 04-05-2011, 12:04 AM
How I got around $_GET restrictions - by El Forum - 04-05-2011, 08:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB