WML901.php 982 Bytes
<?php 
//*****************************************************************************
//* 
//* プログラム名:Webメール
//* プログラムID:WML901.php
//* 機能        :接続エラー画面
//* 作成者      :
//* 
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include("inc/header.inc");
include('./include/smarty.conf');

//**** メニュー ****//
include("menu_opacity.php");

switch ($err) {
	case 1:
		$Err_Massage = " アカウントの設定をおこなってください";
		break;
	case 2:
		$Err_Massage = " サーバーにログイン出来ませんでした<br /> アカウントの再設定をおこなってください<br />";
		break;
	case 3:
		$Err_Massage = " 現在、Webメールの設定は未使用になっております";
		break;
}

$o_smarty->assign('Err_Massage',$Err_Massage);

$o_smarty->assign('PHP_TITLE_NAME',$PHP_TITLE_NAME[18]);
$o_smarty->display('WML901.tpl');

?>