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

7 lines
148 B
PHP

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