File "deconnexion.php"
Full Path: /home/asmplong/www/asm/deconnexion.php
File size: 111 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
unset($_SESSION);
unset($_COOKIE);
session_destroy();
header ('Location:login.php');
?>