pagefooter.inc
839 Bytes
<?PHP
//*****************************************************************************
//* プログラム名:ページフッタ
//* プログラムID:pagefooter.inc
//* 機能 :ページフッタ部分の表示
//*****************************************************************************
function dspFooter($homeURL, $compURL) {
?>
<div class="SimUserinfo">
<span class="NameText">
<img class="emptyimage1" src="./templates/img/empty.gif" border="0">
</span>
<span class="LinkText">
<a href="<?PHP echo($homeURL); ?>" target="_blank">ホームページへ</a>
</span>
</div>
<div class="SimFooter">
<a href="<?PHP echo($compURL); ?>" style="line-height:28px;" target="_blank" title="メディアテック(株)ホームページへ">© Copyright2006-2009 All rights reserved by Mediatech. Co., Ltd.</a>
</div>
</form>
</body>
</html>
<?PHP
}
?>