wefra/scripts/logout.php
2020-11-27 14:10:57 +01:00

11 lines
243 B
PHP

<?php
session_start();
session_destroy();
include("../modules/InterfaceConfig.php");
include("../modules/InterfacePostgreSQL.php");
include("../modules/ClassConfig.php");
$oConf = new ClassConfig();
header('Location:'.$oConf->getURLRoot());