codeigniter session destroy automatically after redirect

// Step 1: Load the session library in CodeIgniter
$this->load->library('session');

// Step 2: Destroy the session
$this->session->sess_destroy();

// Step 3: Redirect to another page
redirect('another_page');

Explanation: 1. Load Session Library: This line loads the CodeIgniter session library, allowing you to work with sessions in your application.

  1. Destroy Session:$this->session->sess_destroy(); is used to destroy the session data. This function will unset all session data, effectively logging the user out or removing their stored session information.

  2. Redirect:redirect('another_page'); redirects the user to another page within the application after destroying the session. This might be a login page or any other page where you want the user to be redirected after logging out or destroying the session data.