Files
spoons/logout.php
T
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");
?>