<?php
// lecture du fichier de configuration
$sThisPath = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
define( 'PATH_BASE', $sThisPath );
include_once( PATH_BASE.'configuration.php' );
if( !isset( $_SESSION ) ){ session_start(); }
$_SESSION[ 'phpsimpledb_login' ] = false;
header( 'Location: '.AUTO_URL_BASE );
exit();
?>