8 lines
138 B
PHP
8 lines
138 B
PHP
<?php
|
|
session_start();
|
|
if(session_destroy()) // Destroying All Sessions
|
|
{
|
|
header("Location: index.php"); // Redirecting To Home Page
|
|
}
|
|
?>
|