SessionChk2.inc
538 Bytes
<?PHP
//*****************************************************************************
//*
//* プログラム名:セッションチェック
//* プログラムID:SessionChk2.inc
//* 機能 :
//* 作成者 :K.Yoshimura(MTC)
//*
//*****************************************************************************
if (strlen($PHP_POST_ADMIN_CD) == 0){
?>
<html>
<head>
<title></title>
</head>
<body>
<Font color="red">【警告】</Font><BR>
ログインしてください。
<BR><BR>
<A HREF="../index.php">トップに戻る</A>
</body>
</html>
<?PHP
exit;
}
?>