CON152.php 1.92 KB
<?php 
//*****************************************************************************
//* 
//* プログラム名:データ削除完了画面
//* プログラムID:CON152.php
//* 機能        :データ削除完了画面
//* 作成者      :
//* 
//*****************************************************************************

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

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

include("inc/header.inc");
//メニューセット
include("menu_opacity.php");

$strDBinc="include/dbcon.inc";
include($strDBinc);

if ($PHP_BIT[0]!=1){
	echo "<br><br><br>";
	echo "<a href='TOP000.php'><span class='Normalfont'>マスタ変更権限がありません</span></a>";
	echo "<br><br><br>";
	echo "<form name='e_gru'></form>";	
	include("include/copyright.inc");
	exit;
}
?>
<form name="e_gru">
<table width="100%" border="0" cellspacing="0">
	<tr>
		<td class="midashi">
			<table width="100%" border="0" cellpadding="0" cellspacing="0">
				<tr>
					<th width="50%" scope="col"><div align="left"><img src="image/t_kanri.gif" border="0">過去データ削除</div></th>
					<th width="50%" scope="col"><div align="right"><a href='javascript:Disp_Help("CON150HLP.htm")'><img src="image/help.gif" border="0"></a> <a href='javascript:Disp_Help("CON150HLP.htm")'>ヘルプ</a></div></th>
				</tr>
			</table>
			<div align="right"></div>
		</td>
	</tr>
</table>
<br><br>
<table border="0" cellspacing="1" cellpadding="1">
	<tr><td>
	<table cellSpacing="0" cellPadding="1" border="0">
		<tr>
			<td bgColor="#FFFFFF">
				削除処理は正常に終了しました。
			</td>
		</tr>
		<tr>
			<td bgColor="#FFFFFF" align="center">
				<br>
				<input type="button" value="管理メニューへ" onClick="location.href='CON001.php';"> 
				<input type="button" value="戻 る" onClick="location.href='CON150.php';">
				<br>
			</td>
	    </tr>
	</table>
	</td></tr>
</table>
<br>
</form>
<?php 
//コピーライト
include("include/copyright.inc");
?>