PRJ005.php 659 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:プロジェクト管理
//* プログラムID:PRJ005.php
//* 機能        :コメント入力画面
//* 作成者      :
//* 
//*****************************************************************************

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

include("inc/session_start.inc");
include("inc/SessionChk.inc");

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

$o_smarty->assign('DIVNAME',$DIVNAME);
$o_smarty->assign('seq',$seq);
$o_smarty->assign('tseq',$tseq);
$o_smarty->assign('sseq',$sseq);
$o_smarty->assign('mode',$mode);

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