I'm trying to use remap function in codeigniter but it doesn't work. I have a method called submit_me
and I would transform it in submit-me
in the URL. I read I can use _remap
function but unfortunately I wasn't able to use it.
public function _remap($method)
{
if($method == 'submit-me')
{
$this->submit_me();
}
else
{
$this->index();
}
}
this is the correct use of it?