logout.php 183 Bytes edit raw blame history 1 2 3 4 5 6 7 8 <?php session_start(); echo $_SESSION['account']; unset($_SESSION['languge']); unset($_SESSION['account']); session_unset(); echo "<script>location.href='../index.php';</script>"; ?>