BellaBuffs-PHPMailer/logout.php

13 lines
226 B
PHP
Raw Normal View History

2012-05-21 12:42:55 +00:00
<?php
if (isset($_COOKIE['bellabuffs'])) {
setcookie('bellabuffs', "");
header("Location: logout.php");
exit;
}
include('prefs.php');
include('header.php');
echo "<p>You are now logged out.</p>";
include('footer.php');
?>