7 lines
172 B
PHP
7 lines
172 B
PHP
<?php
|
|
session_start(); /* Starts the session */
|
|
session_destroy(); /* Destroy started session */
|
|
|
|
header("location:login.php"); /* Redirect to login page */
|
|
exit;
|