DH_Alumni/logout.php

10 lines
157 B
PHP
Raw Permalink Normal View History

2021-04-30 10:16:33 +02:00
<?php
require_once 'general.php';
session_start();
session_unset();
session_destroy();
$config = getConfig();
header('Location: ' . $config['url'] . '/');