RES001.php
738 Bytes
<?php
//*****************************************************************************
//*
//* プログラム名:施設予約
//* プログラムID:RES001.php
//* 機能 :一覧画面
//* 作成者 :
//*
//*****************************************************************************
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/RES001.inc");
include("inc/RESCHK.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[2]);
$o_smarty->display('RES001.tpl');
?>