[問題] 如果在forum頂加入物件?

phpBB Installation & Usage Support
phpBB 2 安裝於各類型作業平台之問題討論;外掛問題,請到相關版面依發問格式發表!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

版面規則
本區是討論關於 phpBB 2.0.X 架設安裝上的問題,只要有安裝任何外掛,請到外掛討論相關版面按照公告格式發表。
(發表文章請按照公告格式發表,違者砍文)
主題已鎖定
york2
星球普通子民
星球普通子民
文章: 4
註冊時間: 2005-03-26 19:42

[問題] 如果在forum頂加入物件?

文章 york2 »

我這個forum 是遊戲私服, 想在forum 頂加入server status:
<?PHP
error_reporting(0);
$my_serv_name="";
$my_ip="218.253.42.97";$IP = array("" => "$my_ip:3724"
);
$online= "<font color=green><B>ONLINE <img src='user_online.gif'></B></font>";
$offline = "<font color=red><B>OFFLINE <img src='user_offline.gif'></B></font>";

while(list($ServerName,$Host)=each($IP)) {
list($IPAddress,$Port)=explode(":",$Host);
echo("<TR><TD>".$ServerName."</TD><TD>");
if($fp=fsockopen($IPAddress, 3724, $ERROR_NO, $ERROR_STR,(float)0.5)) {
echo("

<table border='0' cellpadding='0' cellspacing='0' width='165' height='50'>
<tr height='50'>
<td width='165' height='50' background='themes/warcraft/files/status.gif'><img src='themes/warcraft/files/space.gif' width='16' height='14' border='0'>Server: $online</td>

</tr>
</table>


");
fclose($fp);}
else
echo ("
<table border='0' cellpadding='0' cellspacing='0' width='165' height='50'>
<tr height='50'>
<td width='165' height='50' background='themes/warcraft/files/status.gif'><img src='themes/warcraft/files/space.gif' width='16' height='14' border='0'>Server: $offline</font></td>

</tr>
</table>

");
}

?>
以上是已有的status.php
;-)
小斌
星球公民
星球公民
文章: 129
註冊時間: 2003-03-03 22:57
來自: 麥麥團
聯繫:

文章 小斌 »

我能想到最簡單的方法就是修改 index_body.tpl 或 overall_header.tpl 檔案,用 iframe 來把這個放進去。參考看看吧。
網頁13秒黃金定律 寫:無論頻寬如何變大、無論網路如何變快,一旦載入某個頁面所需的時間超過了13秒,使用者就會不耐煩而按下「上一頁」。
主題已鎖定

回到「phpBB 2 安裝與使用」