1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-04-26 13:28:27 -04:00
spoons/public/logout.php
2017-07-16 16:01:36 -04:00

6 lines
111 B
PHP

<?php
include('config.php');
session_start();
session_destroy();
header("Location:" . $site_url . "/login");
?>