[問題] 請問水色論壇的一個功能
版主: 版主管理群
[問題] 請問水色論壇的一個功能
問題外掛:
參考連結:http://bbs.2233.idv.tw/
使用版本:phpBB 2.0.17
網站位置:http://forum.no89275.net/
狀況描述:
水色論壇(http://bbs.2233.idv.tw/)首頁中,有一個
最多回覆主題 最強人氣主題 評價前五大 灌水前五大\r
不知道這外掛的下載點在哪裡?,可否提供一下,謝謝..
補充:
我不想要評價前五大,我要虛擬貨幣前五大..的..
有的人,提供一下 ^^
先謝謝
參考連結:http://bbs.2233.idv.tw/
使用版本:phpBB 2.0.17
網站位置:http://forum.no89275.net/
狀況描述:
水色論壇(http://bbs.2233.idv.tw/)首頁中,有一個
最多回覆主題 最強人氣主題 評價前五大 灌水前五大\r
不知道這外掛的下載點在哪裡?,可否提供一下,謝謝..
補充:
我不想要評價前五大,我要虛擬貨幣前五大..的..
有的人,提供一下 ^^
先謝謝
虛擬貨幣是哪一種的?
ˊˋ銀行裡面的還是身上的!
ˊˋ銀行裡面的還是身上的!
故天將降大任於是人也,必先苦其心志,勞其筋骨,餓其體膚,空乏其身,行拂亂其所為,所以動心忍性,曾益其所不能。然後知生於憂患而死於安樂也。
☆╮¥藍 天 星 雨£╭★
☆╮¥藍 天 星 雨£╭★
聽不懂!真的chsa 寫:你搞笑嗎? 虛擬貨幣w2812451 寫:虛擬貨幣是哪一種的?
ˊˋ銀行裡面的還是身上的!
故天將降大任於是人也,必先苦其心志,勞其筋骨,餓其體膚,空乏其身,行拂亂其所為,所以動心忍性,曾益其所不能。然後知生於憂患而死於安樂也。
☆╮¥藍 天 星 雨£╭★
☆╮¥藍 天 星 雨£╭★
這很簡單寫阿ˊˋchsa 寫:痾..,可以回到我的問題嗎?(TOP5)
然後下面的$sql = 'SELECT username, user_money FROM phpbb_users u ORDER BY user_money DESC LIMIT 0, 5';
if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, '無法取得金錢 TOP5列表!!', '', __LINE__, __FILE__, $sql);
}
if ( $row = $db->sql_fetchrow($result) )
{
$i = 1;
$mt5 = '<table class="forumline" width="?%" cellspacing="1" cellpadding="3" border="0">
<tr><td align="center" class="catLeft"><b><span class="gen">名次</span></b></td>
<td align="center" class="catLeft"><b><span class="gen">金錢TOP5</span></b></td></tr>';
do
{
$mt5 .= '<tr><td class="row3" align="center"><span class="gensmall">第' . $i .'名'
'</span></td><td class="catLeft"><span class="gensmall">' . $row['username'] .
'</span></td></tr>';
$i++;
}
while ( $row = $db->sql_fetchrow($result) );
$mt5 .= '</table>';
}
XXXX = $mt5,
自己弄喔
上面的user_money自己改成正確的!
這樣應該對!
故天將降大任於是人也,必先苦其心志,勞其筋骨,餓其體膚,空乏其身,行拂亂其所為,所以動心忍性,曾益其所不能。然後知生於憂患而死於安樂也。
☆╮¥藍 天 星 雨£╭★
☆╮¥藍 天 星 雨£╭★
這功能是top5改出來的
下面是網站上的程式碼,參考看看吧\r
1.熱門前五大\r
2.評價前五大\r
3.回覆前五大\r
4.灌水前五大\r
下面是網站上的程式碼,參考看看吧\r
1.熱門前五大\r
代碼: 選擇全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html LANG="zh-TW">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=big5">
<title>Untitled</title>
</head>
<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#F2F8FF">
<STYLE type="text/css">
td{ font-size: 10pt; font-family: verdana }
</STYLE>
<table align="center" bgcolor="#F2F8FF">
<?
define('FORUMS_TABLE', 'phpbb_forums');
define('TOPICS_TABLE', 'phpbb_topics');
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'config.php');
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'includes/db.'.$phpEx);
//
// Mod setting
//
// Topics text length
$MAX_STR_LEN = 26;
// Topics to display
$MAX_TOPICS = 5;
// 0 => users can see all topics including authorized issue(but they cant read the posts)
// 1 => users can see only authorized topics
function cutStr($str) {
global $MAX_STR_LEN;
$str = (strlen($str) > $MAX_STR_LEN) ? (substr($str, 0, $MAX_STR_LEN - 1) . "...") : $str;
return $str;
}
$sql = "SELECT topic_id, topic_title
FROM " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f
WHERE t.forum_id = f.forum_id
AND t.topic_moved_id = '0' and f.auth_view=0 and t.topic_type = '0'
ORDER BY t.topic_views DESC LIMIT 0, $MAX_TOPICS";
if( !$result = $db->sql_query($sql) )
{
echo '<p align="center"><font color="red"><b>ADV_TOPN_MOD TOPICS QUERY ERROR!!</b></font></p>';
exit;
}
// fetch rows
while( $rows = $db->sql_fetchrow($result) )
{
echo "<tr><td><a href=\"http://www.2233.idv.tw/viewtopic.php?t=".$rows['topic_id']."\" target=\"_blank\">".cutStr($rows["topic_title"])."</a></td></tr>";
}
$db->sql_freeresult($rows);
$db->sql_close();
?>
</table>
代碼: 選擇全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html LANG="zh-TW">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=big5">
<title>Untitled</title>
</head>
<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#F2F8FF">
<STYLE type="text/css">
td{ font-size: 10pt; font-family: verdana }
</STYLE>
<table align="center" bgcolor="#F2F8FF">
<?
define('FORUMS_TABLE', 'phpbb_forums');
define('TOPICS_TABLE', 'phpbb_topics');
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'config.php');
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'includes/db.'.$phpEx);
//
// Mod setting
//
// Topics text length
$MAX_STR_LEN = 26;
// Topics to display
$MAX_TOPICS = 5;
// 0 => users can see all topics including authorized issue(but they cant read the posts)
// 1 => users can see only authorized topics
function cutStr($str) {
global $MAX_STR_LEN;
$str = (strlen($str) > $MAX_STR_LEN) ? (substr($str, 0, $MAX_STR_LEN - 1) . "...") : $str;
return $str;
}
$sql_select = 't.topic_title, t.rating_rank_id AS topic_rating, p.rating_rank_id AS post_rating, t.topic_id, ro.points AS label2, SUM(ro.points) AS points';
$sql_from = ' phpbb_rating r, '. TOPICS_TABLE . ' t, phpbb_posts p, ' . FORUMS_TABLE . ' f, phpbb_rating_option ro ';
$sql_where = "r.post_id = p.post_id
AND p.topic_id = t.topic_id
AND t.topic_status = 0
AND t.forum_id = f.forum_id
AND f.auth_view=0
AND r.option_id = ro.option_id
GROUP BY p.post_id ORDER BY points DESC LIMIT 0, $MAX_TOPICS";
$sql ="select " .$sql_select." from ".$sql_from." where ".$sql_where;
if( !$result = $db->sql_query($sql) )
{
echo '<p align="center"><font color="red"><b>ADV_TOPN_MOD TOPICS QUERY ERROR!!</b></font></p>';
exit;
}
// fetch rows
while( $rows = $db->sql_fetchrow($result) )
{
echo "<tr><td><a href=\"http://www.2233.idv.tw/viewtopic.php?t=".$rows['topic_id']."\" target=\"_blank\">".cutStr($rows["topic_title"])."</a></td></tr>";
}
$db->sql_freeresult($rows);
$db->sql_close();
?>
</table>
代碼: 選擇全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html LANG="zh-TW">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=big5">
<title>Untitled</title>
</head>
<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#F2F8FF">
<STYLE type="text/css">
td{ font-size: 10pt; font-family: verdana }
</STYLE>
<table align="center" bgcolor="#F2F8FF">
<?
define('FORUMS_TABLE', 'phpbb_forums');
define('TOPICS_TABLE', 'phpbb_topics');
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'config.php');
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'includes/db.'.$phpEx);
//
// Mod setting
//
// Topics text length
$MAX_STR_LEN = 26;
// Topics to display
$MAX_TOPICS = 5;
// 0 => users can see all topics including authorized issue(but they cant read the posts)
// 1 => users can see only authorized topics
function cutStr($str) {
global $MAX_STR_LEN;
$str = (strlen($str) > $MAX_STR_LEN) ? (substr($str, 0, $MAX_STR_LEN - 1) . "...") : $str;
return $str;
}
$sql = "SELECT topic_id, topic_title
FROM " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f
WHERE t.forum_id = f.forum_id
AND t.topic_moved_id = '0' and f.auth_view=0 and t.topic_type = '0'
ORDER BY t.topic_replies DESC LIMIT 0, $MAX_TOPICS";
if( !$result = $db->sql_query($sql) )
{
echo '<p align="center"><font color="red"><b>ADV_TOPN_MOD TOPICS QUERY ERROR!!</b></font></p>';
exit;
}
// fetch rows
while( $rows = $db->sql_fetchrow($result) )
{
echo "<tr><td><a href=\"http://www.2233.idv.tw/viewtopic.php?t=".$rows['topic_id']."\" target=\"_blank\">".cutStr($rows["topic_title"])."</a></td></tr>";
}
$db->sql_freeresult($rows);
$db->sql_close();
?>
</table>
<body>
代碼: 選擇全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html LANG="zh-TW">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=big5">
<title>Untitled</title>
</head>
<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#F2F8FF">
<STYLE type="text/css">
td{ font-size: 10pt; font-family: verdana }
</STYLE>
<table align="center" bgcolor="#F2F8FF">
<?
define('FORUMS_TABLE', 'phpbb_forums');
define('TOPICS_TABLE', 'phpbb_topics');
define('USERS_TABLE', 'phpbb_users');
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'config.php');
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'includes/db.'.$phpEx);
//
// Mod setting
//
// Topics text length
$MAX_STR_LEN = 30;
// Topics to display
$MAX_TOPICS = 5;
// 0 => users can see all topics including authorized issue(but they cant read the posts)
// 1 => users can see only authorized topics
function cutStr($str) {
global $MAX_STR_LEN;
$str = (strlen($str) > $MAX_STR_LEN) ? (substr($str, 0, $MAX_STR_LEN - 1) . "...") : $str;
return $str;
}
$sql = "SELECT user_id, username,user_posts
FROM " . USERS_TABLE . " t
WHERE t.user_active = 1
ORDER BY user_posts DESC LIMIT 0, $MAX_TOPICS";
if( !$result = $db->sql_query($sql) )
{
echo '<p align="center"><font color="red"><b>ADV_TOPN_MOD TOPICS QUERY ERROR!!</b></font></p>';
exit;
}
// fetch rows
while( $rows = $db->sql_fetchrow($result) )
{
echo "<tr><td><a href=\"http://www.2233.idv.tw/profile.php?mode=viewprofile&u=".$rows['user_id']."\" target=\"_blank\">".$rows["username"]."</a> 發表了 ".$rows["user_posts"]."篇文章</td></tr>";
}
$db->sql_freeresult($rows);
$db->sql_close();
?>
</table>
水色論壇 http://www.et99.net
簡德賢分享
簡德賢分享
這.......樣的外掛有人寫過嗎??.....
ETERNAL大大提供的 我可以把他改寫成外掛貼出來嗎?? 還是大大不同意呢??
ETERNAL大大提供的 我可以把他改寫成外掛貼出來嗎?? 還是大大不同意呢??
請遵守竹貓版規
[必看]請配合發問格式及明確主題發問(04 02/16更新) phpBB!
發表格式
[必看] phpBB 使用問答區發文規則與發問格式
新手必看
[教學]認識、安裝和參考PHPBB的新手基本教學通
PHPBB安裝教學
[教學] phpbb簡易安裝教學 (圖片教學)
[必看]請配合發問格式及明確主題發問(04 02/16更新) phpBB!
發表格式
[必看] phpBB 使用問答區發文規則與發問格式
新手必看
[教學]認識、安裝和參考PHPBB的新手基本教學通
PHPBB安裝教學
[教學] phpbb簡易安裝教學 (圖片教學)