summaryrefslogtreecommitdiff
path: root/logout.php
blob: e4d40ed139107e16c31c557ed92574e469cc4604 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
	require_once "config.php";
	require_once "sessions.php";

	session_destroy();

	header("Location: login.php");

?>