This repository has been archived on 2023-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
stafett-for-livet/logout.php

14 lines
217 B
PHP
Raw Normal View History

2021-09-11 16:31:53 +00:00
<?php
// Initialize the session
session_start();
// Unset all of the session variables
$_SESSION = [];
// Destroy the session.
session_destroy();
// Redirect to login page
header("location: login.php");
exit;
?>