Hi everyone, I am having some trouble with this: grocery_crud_dialog_forms.
Setting this at true, there is no chance that a redirect works.
I need that the following code works:
public function login_view(){
$this->load->view("login.php");
}
public function user_logout(){
$this->session->sess_destroy();
redirect('login_view', 'refresh');
}
How can I do this?