Anyone know a good way to pass info the right config for passing data in controllers? like
domain.com/controller/function/iddomain.com/mylist/shows/view/2
I want to eliminate the 'view' part but action_index() doesn't pass the id. Also I want to still be able to use
domain.com/shows/edit/2
Also note the controller is extended:
class Controller_Mylist_Shows extends Controller_Mylist
{
}
Using routing it seems i have to add each method to the routing if i decide to pass the uri segment into view, so just trying to see if their is an alternative.