SessionChk.inc
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?PHP
//*****************************************************************************
//*
//* プログラム名:セッションチェック
//* プログラムID:SessionChk.inc
//* 機能 :
//* 作成者 :
//*
//*****************************************************************************
if (strlen($PHP_POST_SYAIN_CD) == 0){
?>
<html>
<head>
<title>め〜るNiポン!</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
#main {
color: #333;
font-size: 90%;
line-height: 150%;
width: 700px;
text-align:left;
}
h3 {
color: #FFFFFF;
background-color: #6699FF;
padding: 4px 4px 4px 10px;
margin-right: 20px;
margin-left: 20px;
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: #0066CC;
font-size: 100%;
text-align: left;
}
ul, li {
list-style-type: disc;
text-align: left;
}
.attention {
color: #f66;
text-align: center;
padding: 10px;
}
-->
</style>
</head>
<body>
<?PHP
//配信チェックヘッダー
//include("../include/header_public.inc");
?>
<div align="center">
<div id="main">
<p class="attention"><A HREF="http://www.mail-ni-pon.net/">こちらからログインできます。</A></p>
</div>
</div>
</body>
</html>
<?PHP
exit;
}
?>