1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php include_once("./_common2.php"); ?> <? if( isset($_COOKIE['USERID']) && $_COOKIE['USERID'] !== ""){
setcookie("USERID", "", time()-3600); setcookie("USERID", "", time()-3600,"/"); $_SESSION['USERID'] = ""; // session_destroy(); ?> <script> parent.location.href = "intro.php"; </script> <? } ?>
|