login_i.php
939 Bytes
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
<?php
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("inc/header.inc");
session_unregister("PHP_FOLDER");
require_once "jcode.phps";
$strPass=split("/", $_SERVER["SCRIPT_FILENAME"]);
$PHP_FOLDER=$strPass[count($strPass)-2];
session_register("PHP_FOLDER");
$GroupID = $_REQUEST["gid_i"];
$GroupPW = $_REQUEST["gpw_i"];
include('./include/smarty.conf');
if(empty($PHP_SYAIN_NAME)==TRUE){
$session_chk="true";
}else{
$session_chk="true";
$DISP_URL = "TOP000.php";
}
$o_smarty->assign('cookGroupID' ,$GroupID);
$o_smarty->assign('cookGroupPW' ,$GroupPW);
$o_smarty->assign('SayinCMB' ,$SayinCMB);
$o_smarty->assign('info_title' ,$info_title);
$o_smarty->assign('info_value' ,$info_value);
$o_smarty->assign('session_true',$session_chk);
$o_smarty->assign('user_name' ,$PHP_SYAIN_NAME);
$o_smarty->assign('DISP_URL' ,$DISP_URL);
$o_smarty->display('login_i.tpl');
?>