TDL001.php 755 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:ToDo
//* プログラムID:TDL001.php
//* 機能        :ToDo メイン
//* 作成者      :
//* 
//*****************************************************************************

header("Content-type: text/html; charset=EUC-JP");

include("include/session_start.inc");
include("include/SessionChk.inc");
include('./include/smarty.conf');

include("inc/header.inc");
include("inc/TDL001.inc");
include("inc/input_chk.inc");

//メニューセット
include("menu_opacity.php");

$strDBinc="include/dbcon.inc";
include($strDBinc);


$strSQL="";
$objRec="null";

$o_smarty->assign('PHP_TITLE_NAME',$PHP_TITLE_NAME[1]);

$o_smarty->display('TDL001.tpl');
?>