ADR001.php
865 Bytes
<?php
//*****************************************************************************
//*
//* プログラム名:アドレス帳
//* プログラムID:ADR001.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/ADR000.inc");
include("./inc/input_chk.inc");
include("./inc/STRING.inc");
//*** メニューセット ***//
include("./menu_opacity.php");
//**** DB接続 ****//
include("./include/dbcon.inc");
$o_smarty->assign('PHP_TITLE_NAME',$PHP_TITLE_NAME[14]);
$o_smarty->display('ADR000.tpl');
?>