5 lines
84 B
PHP
5 lines
84 B
PHP
<?php
|
|
session_start();
|
|
unset($_SESSION["username"]);
|
|
header("Location: login.php");
|