index.php 1.33 KB
<?PHP 
//*****************************************************************************
//* プログラム名:グループログイン
//* プログラムID:index.php
//* 機能        :グループログイン
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("./inc/session_start.inc");

$cookGroupID = $_COOKIE["cookie_GroupID"];
$cookGroupPW = $_COOKIE["cookie_GroupPW"];

include('./inc/smarty.conf');
include('./inc/const.inc');


//HTMLヘッダの書き出し
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 
<html>
<head>
	<meta http-equiv="content-type" content="text/html; cahrset=euc-jp">
	<meta http-equiv="content-style-type" content="text/css">
	<meta name="robots" content="noindex, nofollow">
	<title>総合資金管理システム【はやぶさ君】</title>
	<link rel="stylesheet" href="./templates/SIMlite.css" type="text/css" />
</head>
<?PHP 

//define
//[0]システムURL、[1]HP URL、[2]マニュアルURL、[3]MTC HP URL、[4]マスタメールアドレス、
//[5]期間区分名、[6]大区分名、[7]小区分名、[8]支出名、[9]収入名、[10]消費税率(文字型)
$o_smarty->assign('DEFARR',$DEFARR);

$o_smarty->assign('PHP_SYSNAME',$PHP_SYSNAME);
$o_smarty->assign('cookGroupID',$cookGroupID);
$o_smarty->assign('cookGroupPW',$cookGroupPW);
$o_smarty->display('./index.tpl');

?>