1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-04-27 04:38:26 -04:00
spoons/public/logout.php

7 lines
148 B
PHP

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