Show sourcecode
The following files exists in this folder. Click to view.
changeowned.php
classes/
createcard.php
database.php
forgot.php
incl/
index.php
leaderboard.php
lineup.php
login.php
logout.php
newpass.php
otherlineup.php
playerinfo.php
projekt.zip
skapatabeller.php
verify.php
logout.php
21 lines ASCII Windows (CRLF)
<?php
$title = "Logga Ut";
$pageId = "logout";
$pageStyle = '
figure {
border-radius: 10px;
border-color:#333;
box-shadow: 10px 10px 5px #888;
}';
include("incl/default.php");
include("incl/protected.php");
include("incl/header.php");
unset($_SESSION["logIn"]);
unset($_SESSION["email"]);
unset($_SESSION["userid"]);
header("Location: index.php");
?>
<?php include("incl/footer.php") ?>