wefra/scripts/logout.php

11 lines
243 B
PHP
Raw Permalink Normal View History

<?php
session_start();
session_destroy();
2020-11-27 13:10:57 +00:00
include("../modules/InterfaceConfig.php");
include("../modules/InterfacePostgreSQL.php");
include("../modules/ClassConfig.php");
$oConf = new ClassConfig();
header('Location:'.$oConf->getURLRoot());