11 lines
243 B
PHP
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());
|