How would I generate / parse this RESTful url in codeigniter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:37:05Z http://stackoverflow.com/feeds/question/570431 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/570431/how-would-i-generate-parse-this-restful-url-in-codeigniter 0 How would I generate / parse this RESTful url in codeigniter Allen 2009-02-20T17:09:47Z 2009-02-20T17:29:09Z <p>I'm new to MVC, being RESTful, and CodeIgniter and I'm trying to get into it in my spare time, so this is largely an academic question. I'm trying to build a url that will display the availability of a particular hotel room, for a particular hotel. I figured the RESTful way to do this would be </p> <pre>http://url/Hotel/2/RoomAvailability/3/</pre> <ul> <li>"Hotel" is the controller</li> <li>"2" is the hotel ID</li> <li>"RoomAvailability" is the Method</li> <li>"3" is the Room ID</li> </ul> <p><em>How would I set up my controller in codeigniter to handle this?</em> Currently I'm thinking i could either</p> <ul> <li>Do something with mod_rewrite to redirect to the RoomAvailability() method</li> <li>Do something with the index() method and redirect to the RoomAvailability() method</li> </ul> <p>Really this is a pretty generic question, as I just want to be able to do </p> <pre>http://url/model/method-argument/method-name/more-method-arguments</pre> <p>But I'm honestly having a hard time coming up with search terms to find out what to use, other than "RESTful" and "CodeIgniter", which havent been too helpful.</p> <p>I'm really just looking for guidance, not for someone to write my controller for me, thanks! Also, if this URL that I'm going for is horrible and not RESTful at all, please feel free to point out a better way.</p> http://stackoverflow.com/questions/570431/how-would-i-generate-parse-this-restful-url-in-codeigniter/570473#570473 2 Answer by davethegr8 for How would I generate / parse this RESTful url in codeigniter davethegr8 2009-02-20T17:19:05Z 2009-02-20T17:19:05Z <p>Checkout the CI User Guide, specifically the part on routing.</p> <p><a href="http://codeigniter.com/user_guide/general/routing.html" rel="nofollow">http://codeigniter.com/user_guide/general/routing.html</a></p> http://stackoverflow.com/questions/570431/how-would-i-generate-parse-this-restful-url-in-codeigniter/570517#570517 3 Answer by Jayrox for How would I generate / parse this RESTful url in codeigniter Jayrox 2009-02-20T17:29:09Z 2009-02-20T17:29:09Z <p>What about this url set up:</p> <pre><code>http://url/hotel/method/hotel_id/room_id </code></pre> <p>Then you could do something like this:</p> <pre><code>class Hotel extends Controller { function RoomAvailability() { $hotel = url_segment(3); $room = url_segment(4); do_magic(); } } </code></pre>