Files
spoons/logout.php
T

7 lines
148 B
PHP

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