DUT001.php 748 Bytes
<?php 

//*****************************************************************************

//* 

//* プログラム名:当番表

//* プログラムID:DUT001.php

//* 機能        :一覧画面

//* 作成者      :荒内(MTC)

//* 

//*****************************************************************************



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/DUT001.inc");

include("inc/input_chk.inc");



//メニューセット

include("menu_opacity.php");

$strDBinc="include/dbcon.inc";

include($strDBinc);

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


$o_smarty->display('DUT001.tpl');



?>