Add Script of the site

This commit is contained in:
jb
2009-09-15 21:08:20 +00:00
parent 5a607545a9
commit b6564df50a
46 changed files with 11408 additions and 0 deletions

22
Scripts/logout.php Normal file
View File

@@ -0,0 +1,22 @@
<?
/*
*********************************************************************
* File : $RCSfile: logout.php,v $
* Version : $Revision: 1.4 $
* Modified by : $Author: jb $ ($Date: 2002/12/14 19:59:27 $)
*********************************************************************
*/
require "conf.php";
require "ErreurConnect.php";
session_start ();
global $pseudo;
session_destroy (); /*We close the curent session*/
header("Location:$racine/index.php");
exit();
?>