原帖由 paicheng 于 2005-11-20 15:15 发表
楼主能不能做成一周浏览最多主题、一周回复最多主题啊?
//--------------------------------Hack by Freddy,happy0429
case 'topview':
$table = 'threads';
$cols='dateline,tid,subject,author,views,replies';
$conditions = "WHERE dateline>='$timestamp'-86400*7 ORDER BY views DESC LIMIT 0,5";
break;
case 'topreply':
$table = 'threads';
$cols='dateline,tid,subject,author,views,replies';
$conditions = "WHERE dateline>='$timestamp'-86400*7 ORDER BY replies DESC LIMIT 0,5";
break;
case 'toppostnum':
$table = 'members';
$cols='username, uid, posts';
$conditions = "ORDER BY posts DESC LIMIT 0, 5";
break;
//--------------------------------Hack by Freddy,happy0429
不知这样可否
[ 本帖最后由 maxgo 于 2005-12-3 05:41 编辑 ] |