How would I generate / parse this RESTful url in codeigniter - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T12:37:05Zhttp://stackoverflow.com/feeds/question/570431http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/570431/how-would-i-generate-parse-this-restful-url-in-codeigniter0How would I generate / parse this RESTful url in codeigniterAllen2009-02-20T17:09:47Z2009-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#5704732Answer by davethegr8 for How would I generate / parse this RESTful url in codeigniterdavethegr82009-02-20T17:19:05Z2009-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#5705173Answer by Jayrox for How would I generate / parse this RESTful url in codeigniterJayrox2009-02-20T17:29:09Z2009-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>