Files
exception_handler_website/logout.php

6 lines
76 B
PHP
Executable File

<?php
session_start();
session_destroy();
header('Location: index.php');
?>