File "index_.php"

Full path: /www/ansys/qgis/004_iwakuni/index_.php
File size: 2.32 KiB (2377 bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php
//===============================================
//	CommonUtilities
//	備考		:	
//	更新		:	2012/10/18 KMK-Teraoka
//===============================================
$PENTA_OCEAN = "五洋建設株式会社";
$TAIL_PENTA_OCEAN = "penta-ocean";
$SCRIPT_TITLE = "コンクリート品質管理システム<br />-岩国飛行場(H23)駐機場(B)等舗装工事-";
$LINK_LIST = array(
	array("path"	=>	"./viewer/top.php",				"title"	=>	"■メインページ"),
	array("path"	=>	"./list/conc_data_list.php",	"title"	=>	"■コンクリート品質管理データ一覧"),
	array("path"	=>	"./status/status_list.php",		"title"	=>	"■端末ステータス一覧"),
	array("path"	=>	"./list/shipping_list.php",		"title"	=>	"■コンクリート搬出記録一覧"),
);

//===============================================
//	HTML-HEAD-
//	備考		:	
//	更新		:	2012/10/18 KMK-Teraoka
//===============================================
print "<html>";
print "<head>";
print "<meta http-equiv=\"content-type\" content=\"text/html;charset=utf-8\">";
print "<link rel=\"stylesheet\" type=\"text/css\" href=\"/ansys/config/css/style.css\">";
print "<link rel=\"shortcut icon\" href=\"/ansys/config/favicon.ico\">";
print "<title>". $SCRIPT_TITLE. "</title>";
print "</head>";

//===============================================
//	HTML-BODY部開始-
//	備考		:	
//	更新		:	2012/10/18 KMK-Teraoka
//===============================================
print "<body>";
print "<center>";
print "<font size=\"3\">";
print "<b>";
print "". $SCRIPT_TITLE. "<br>";
print "【". $PENTA_OCEAN. "】";
print "</b>";
print "</font>";
print "</center>";
print "<hr />";

//===========================
// リンクの作成
//===========================
$num = count($LINK_LIST);
print "<b>";
for($iCount = 0; $iCount < $num; $iCount++)
{
	print "<font size=\"3\">";
	print "<a href=\"". $LINK_LIST[$iCount]["path"]. "\">". $LINK_LIST[$iCount]["title"]. "</a>";
	print "</font>";
	print "<br />";
	if (($iCount + 1) < $num)
	{
		print "<br />";
	}
}
print "</b>";

//===========================
// 終端
//===========================
print "<hr />";
print "<font size=\"3\" color=\"#000000\" face=\"Arial\">";
print "<center>";
print "<b>";
print "<i>";
print $TAIL_PENTA_OCEAN;
print "</i>";
print "</b>";
print "</center>";
print "</font>";
print "</body>";
print "</html>";
?>

PHP File Manager