View file Remove image backgrounds/remove-bg/dark/admin-pannel/logout.php

File size: 227B
<?php
// Initialize the session
session_start();

// Unset all session variables
$_SESSION = array();

// Destroy the session.
session_destroy();

// Redirect to login page
header("Location: login.php");
exit;
?>