![]() |
How do you edit your URI segments? - 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: How do you edit your URI segments? (/showthread.php?tid=7260) |
How do you edit your URI segments? - El Forum - 04-01-2008 [eluser]KeyStroke[/eluser] I have an application that utilizes URI's the usual way like this: Code: http://example.com/index.php/controller/function/var1/var2/var3 I'm controlling those variables through my view file, as they're basically links to categories in different places (e.g: /usa/texas/computing). The problem is that now var1 and var2's values should be different for some links. How do I change them in a simple, re-usable way? Your help is much appreciated. |