OK論壇

 找回密碼
 註冊
查看: 1503|回復: 1

[這主題已經被回收了,購買前請三思] eAthena-Ragnarok-register多功能註冊網頁(優化板v0.7)-無法顯示人數

 關閉 [複製鏈接]

該用戶從未簽到

發表於 2009-1-4 13:13:39 | 顯示全部樓層 |閱讀模式
我使用的資料庫
appserv-win32-2.5.9使用的語言編碼
UTF-8

但是無法顯示人數
http://20.hopto.org/PRR/

<?PHP
$title = "首頁";
require './inc/header.inc';
echo ("<TABLE align='center'>");
error_reporting(0);
$IP = array("<font size=-2>登陸伺服器:" => "".$loginip.":".$loginport."","<font size=-2>人物伺服器:" => "".$charip.":".$charport."","<font size=-2>地圖伺服器:" => "".$mapip.":".$mapport."",);
while(list($ServerName,$Host)=each($IP)) {
list($IPAddress,$Port)=explode(":",$Host);
echo("<TD><DIV>".$ServerName."</DIV></TD><TD>");
if($fp=fsockopen($IPAddress,$Port,$ERROR_NO,$ERROR_STR,(float)0.5)) {
echo("<DIV style=\"color:'green'\"><font size=-2>正常在線</DIV>");
fclose($fp); }else{ echo("<DIV style=\"color:'red'\"><font size=-2>未知狀態</DIV>");} echo ("</TD></TR><TR>");}
$usergs1 = 0;$res = mysql_query("SELECT user FROM `sstatus`");$row = mysql_fetch_array($res);$usergs1 = $row[user];
if($usergs1 == 0) {$usergs2 = '不顯示'; } else { $usergs2 = $usergs1; }
echo ("<tr><td><font size=-3> 在線人數: </td><td><font size=-2 color=blue>".$usergs2."</font></td></tr>");
echo ("</TABLE>");
require './inc/indexfooter.inc';
?>

請問這段要怎麼改成顯示呢

[ 本帖最後由 a20080001 於 2009-1-4 01:41 PM 編輯 ]

評分

參與人數 1積分 -10 現金 -10 積極性 -10 收起 理由
bn5656 -10 -10 -10 提問後未處裡

查看全部評分

回復

使用道具 舉報

該用戶從未簽到

發表於 2009-1-4 14:40:24 | 顯示全部樓層
請注意以下幾個部分:
config.php 部分:
$dbHost = "127.0.0.1";                        //數據庫位址
$loginip = "127.0.0.1";                        //LOGIN的IP
$charip = "127.0.0.1";                        //CHAR的IP
$mapip = "127.0.0.1";                        //MAP的IP
以上請設127.0.0.1

$charset = "big5";                        //MYSQL編碼設置(請參考下方語系名稱)
這地方你可能需要改,因為我看到你網頁裡遊戲排行是亂碼


index.php 部分:
  1. $usergs1 = 0;$res = mysql_query("SELECT user FROM `sstatus`");$row = mysql_fetch_array($res);$usergs1 = $row[user];
複製代碼
請改寫為:
  1. $usergs1 = 0;$res = mysql_query("SELECT online FROM `char`");$row = mysql_fetch_array($res);$usergs1 = $row[online];
複製代碼


不過這個註冊網,印象中是給 Ja 用的不是嗎? EA 我不知道會不會有錯!

評分

參與人數 1積分 +10 現金 +10 積極性 +10 收起 理由
goddameit + 10 + 10 + 10 認真回答。

查看全部評分

回復 支持 反對

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 註冊

本版積分規則

Archiver|手機版|小黑屋|OK討論區

GMT+8, 2024-4-29 01:35 PM , Processed in 0.051039 second(s), 20 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回復 返回頂部 返回列表