There are multiple solutions out there but i did create my own.
It’s simple as 1,2,3. Hope it helps.
[sourcecode lang=”php”]
		// CODEIGNITER HACK
		$tmp = explode(‘?’,$_SERVER[‘REQUEST_URI’]);
		$tmp = explode(‘&’, $tmp[1]);
		foreach($tmp as $keyval) {
			$tmpAppoggio = explode(‘=’, $keyval);
			$_GET[urldecode($tmpAppoggio[0])]=urldecode($tmpAppoggio[1]);
		}
		// end of codeigniter hack
[/sourcecode]