/home/mjc1/public_html/html/ezpos/html/member/logout.php


1
2
3
4
5
6
7
8
9
10
11
<?
    
if( isset($_COOKIE['USERID']) && $_COOKIE['USERID'] !== ""){
      
      
setcookie("USERID","",time()-1000,"/");
?>
<script>
 parent.location.href = "../../intro.php";
</script>
<?      
      
}
?>