logout.php 183 Bytes
<?php
session_start();
echo $_SESSION['account'];
unset($_SESSION['languge']);
unset($_SESSION['account']);
session_unset();
echo "<script>location.href='../index.php';</script>";
?>