CodeIgniter Forums
Delete item and return to current page - pagination - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Delete item and return to current page - pagination (/showthread.php?tid=49054)



Delete item and return to current page - pagination - El Forum - 02-07-2012

[eluser]kolxoznik1[/eluser]
I have made in my controller :

Code:
function delete_user($user_id)
    {
        $this->activity_model->delete_user($ban_id);
        
        redirect('user_list');
    }

when I click "delete" it delete and redirect to 1 page. It is simple.

Is it possible to redirect back to page, where was item deleted if there is no more itemas on this page and it not exist any more return to previous page ?

If you have done this please give an idea ... everything making this will be good !