1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-06-29 03:15:40 -04:00
Files
spoons/logout.php
2013-05-19 11:51:36 -04:00

7 lines
152 B
PHP

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