/home/mjc1/public_html/otms_old/logout.php


1
2
3
4
5
6
7
8
9
10
11
12
<?php
$dir 
".";
include_once(
$dir."/_common.php");
    if( isset(
$eid) && $eid !== ""){
        
session_destroy();
?>
<script>
 location.href = "index.php";
</script>
<?php
      
}
?>