SessionChk.inc
372 Bytes
<?PHP
//*****************************************************************************
//* プログラム名:セッションチェック
//* プログラムID:SessionChk.inc
//* 機能 :
//*****************************************************************************
if (strlen($PHP_USER_SEQ) == 0 || strlen($PHP_USER_NAME)==0){
header("Location:./index.php?err=999");
exit;
}
?>