php-password-store/logout.php

9 lines
221 B
PHP
Raw Permalink Normal View History

<?php
require 'config.php';
include 'session.php';
session_destroy();
header('Location: login.php');
echo 'Logout successful. If you are not redirected back to the login page, <a href="login.php">click here</a>.';
exit;