|
发表于 2008-3-28 13:52:42
|
显示全部楼层
来自 中国–广东–深圳
回复: 论坛个性签名引用PS3排行榜数据!
Post by 311890
那个rank文件还要指向htm文件来导入数据,具体类似index.php对数据的处理方式
能否做一个相对独立的排行榜呢?数据库还是用ps3的,然后另外建立一个文件夹PSTOP,
这个目录下放top10.php, rank.php,config.php,/includes/common.php,
还需要怎么做?
“那个rank文件还要指向htm文件来导入数据?”
还需要在rank.php加入以下类似的代码吗?
////////////////////////////////////////////
if(empty($dbport))
$dbport = 3306;
if($dbtype=="mysql")
{
$plrData = array();
$conn = mysql_connect($dbhost.":".$dbport,$dbuser,$dbpass) or die(mysql_error());
mysql_select_db($dbname,$conn) or die(mysql_error());
$query = "select plrid,uniqueid,rank,skill from ".$dbtblprefix."plr where allowrank=1 order by skill desc limit 50";
$result = mysql_query($query);
print("<table width=\"100%\" align=\"center\" cellpadding=\"5\"><tr><td colspan=\"8\" style=\"background: #000000 url(images/bar2.jpg) repeat-x\" align=\"center\"><font size=\"+1\" color=\"#cc0000\">混战服务器综合排名榜</font></td></tr><tr>
<td style=\"background: #050505\" align=\"center\">排名</td><td style=\"background: #050505\">名字</td><td style=\"background: #050505\">杀人数</td><td style=\"background: #050505\">死亡数</td><td style=\"background: #050505\">杀亡比</td><td style=\"background: #050505\">暴头率</td><td style=\"background: #050505\">总在线时间</td><td style=\"background: #050505\">综合得分</td></tr>"); |
|