File "index.php"
Full path: /www/ansys/qgis/index.php
File size: 2.81 KiB (2877 bytes)
MIME-type: text/x-php
Charset: utf-8
<?php
//===============================================
// CommonUtilities
// 備考 :
// 更新 : 2012/10/18 KMK-Teraoka
//===============================================
$PENTA_OCEAN = "五洋建設株式会社";
$TAIL_PENTA_OCEAN = "penta-ocean";
$SCRIPT_TITLE = "運行管理システム -工事一覧-";
$LINK_LIST = array(
array("path" => "./000_nasu2/index.php", "title" => "■那須試験"),
array("path" => "./001_haneda/index.php", "title" => "■羽田試験"),
array("path" => "./002_kujyusaki/index.php", "title" => "■沖縄-空寿崎-"),
array("path" => "./003_asahikawa/index.php", "title" => "■旭川(23震災関連)庁舎新設等建築工事"),
array("path" => "./004_iwakuni/index.php", "title" => "■岩国飛行場(H23)駐機場(B)等舗装工事"),
array("path" => "./005_honmoku/index.php", "title" => "■横浜港南本牧地区コンテナヤード整備工事"),
array("path" => "./006_haneda/index.php", "title" => "■東京国際空港C誘導路中央部他地盤改良工事"),
array("path" => "./007_honmoku/index.php", "title" => "■横浜港本牧地区岸壁(-16m)(耐震)(改良)築造工事(その2)"),
array("path" => "./012_kawasaki/index.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>";
?>