Sessions in PHP do not get destroyed and cookie is not removed
I have this function logout that gets called before the HTML is rendered and it is: function logout() { $_SESSION = []; if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"] ); } session_destroy();…