CodeIgniter Forums
The input->get is not working - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: The input->get is not working (/showthread.php?tid=17710)

Pages: 1 2


The input->get is not working - El Forum - 04-13-2009

[eluser]TheFuzzy0ne[/eluser]
The URL for accessing that page should be: http://localhost/index.php?c=Greet&m=hello&id=123 OR http://localhost/?c=Greet&m=hello&id=123.

All requests go via the index.php file. That's the only file directly accessible from the outside.


The input->get is not working - El Forum - 04-13-2009

[eluser]hudar[/eluser]
Hm, I wonder if you can try to allow things like ? & = in config.php

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; <-- add here