![]() |
Equivalent of GET? - 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: Equivalent of GET? (/showthread.php?tid=12269) |
Equivalent of GET? - El Forum - 10-13-2008 [eluser]Unknown[/eluser] Hi, I creating a sample site using codeIgniter, I wonder when I used GET in my form,in my previous testing site wit out using CI framework,I used most of the times this GET... What is the equivalent of GET in CodeIgniter? Equivalent of GET? - El Forum - 10-13-2008 [eluser]Colin Williams[/eluser] The equivalent is, I suppose you could say, URI segments. However, CI doesn't stop you from using GET requests or from using the $_GET array to capture values passed via a query string. |