Hi all,
I have these urls:
.http://backend.domain.com/system/setting/edit/12
.http://backend.domain.com/product/edit/1
How to get controller name, action name from these urls. I'm codeigniter newbie.
are there any helper function to get these info
Ex:
$params = helper_function(current_url())
$params --> array ('controller' => 'system/settings', 'action' => 'edit', '...'=>'...')
Thanks.