Please bear with me as I am new to CodeIgniter
I'll try to explain by giving an example
Let's say I have a controller called news and the urls /news/create and /news/delete can delete news.
Problem is that I have comments on the news page that a user should be able to delete. But right now if you /comment/delete/1 it will remain on the /comment/delete page but I want to user to remain on the specific news page.
Right now I use this:
public function delete($id = NULL)
{
$this->news_model->delete_news($id);
redirect('/news/');
}
But this doesn't not take into account to go back to a specific news item.
Kindly let me know how I can tackle this issue.