Hi all,
I’ve been searching for a while on Google, but have only found how to enable Query Strings http://www.askaboutphp.com/58/codeigniter-mixing-segment-based-url-with-querystrings.html .
I have a form that uses a GET method and produces this URI,
books/course?course_id=CC100&format=XML&submit=Submit
I want to convert this URI to use Segments, just as a POST method would produce.
The ideal URI I would like is:
books/course/CC100/XML
Anyone know how I’d go about this?
