Files
moms/logout.php
T
2017-05-26 15:17:48 +04:00

9 lines
163 B
PHP

<?php
session_start();
$_SESSION['moms_uid'] = "";
session_destroy();
session_unset();
$res= 'logout';
header("Location:login.php?res=".$res);
?>