mirror of
https://github.com/helenclx/BellaBuffs-PHPMailer.git
synced 2025-03-11 20:41:47 +00:00
13 lines
226 B
PHP
13 lines
226 B
PHP
<?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');
|
|
?>
|