Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

【Hack】将发表主题和回复主题分开(viewpro和viewthread)

[复制链接]
wayn12000 发表于 2005-5-16 20:04:08 | 显示全部楼层 |阅读模式
演示:http://92103.no-ip.com/Discuz/viewthread.php?tid=6911&fpage=1


修改 viewthread.php
查找

  1. $postlist[] = $post;
复制代码



在前面添加

                  
  1. $topicquery = $db->query("SELECT tid FROM $table_threads WHERE author='$post[author]'");
  2.                    $post[topicallnum] = $db->num_rows($topicquery);
  3.                    $post[postnum] = $post[postnum] - $post[topicallnum];
复制代码





修改 viewthread.htm
查找

   
  1. {lang postnum} $post[postnum]<br>
复制代码




将其替换
   
  1. {lang forum_threads} $post[topicallnum]<br>
  2.         {lang replies} $post[postnum]<br>
复制代码





新增修改 viewpro.php

查找
  1. $query = $db->query("SELECT COUNT(*) FROM $table_posts");
复制代码


在下面添加
  1. $topicquery = $db->query("SELECT tid FROM $table_threads WHERE author='$member[username]'");
  2.                    $member[topicallnum] = $db->num_rows($topicquery);
  3.                    $member[postnum] = $member[postnum] - $member[topicallnum];
  4. @$percent1 = round($member['topicallnum'] * 100 / $db->result($query, 0), 2);
复制代码



修改 viewpro.htm

查找
  1. <tr><td width="45%" class="bold">{lang postnum}:</td><td width="55%">$member[postnum] ({lang post_percent} $percent%)</td></tr>
复制代码



将其替换
  1. <tr><td width="45%" class="bold">{lang forum_threads}:</td><td width="55%">$member[topicallnum] ({lang post_percent} $percent1%)</td></tr>
  2. <tr><td width="45%" class="bold">{lang replies}:</td><td width="55%">$member[postnum] ({lang post_percent} $percent%)</td></tr>
复制代码

[ 本帖最后由 wayn12000 于 2005-6-13 09:02 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

评分

1

查看全部评分

anshow 发表于 2005-5-16 20:05:08 | 显示全部楼层
先顶上
不过演示地址打不开哦

[ Last edited by anshow on 2005-5-16 at 20:06 ]
回复

使用道具 举报

xjbl 发表于 2005-5-16 20:07:54 | 显示全部楼层
顶上...
回复

使用道具 举报

PerfectWorks 发表于 2005-5-16 20:08:24 | 显示全部楼层
什么意思?
回复

使用道具 举报

瘋狂cc 发表于 2005-5-16 20:09:21 | 显示全部楼层
強..我來去試試..
回复

使用道具 举报

lj80117 发表于 2005-5-16 20:09:53 | 显示全部楼层
演示打不开哟
回复

使用道具 举报

anshow 发表于 2005-5-16 20:10:40 | 显示全部楼层
谁装了给个图上来好了
回复

使用道具 举报

瘋狂cc 发表于 2005-5-16 20:12:54 | 显示全部楼层
若是我只想要在個人資料的頁面(viewpro)也更改,又要如何改呢?
回复

使用道具 举报

xjbl 发表于 2005-5-16 20:13:14 | 显示全部楼层
谁装好了,给个截图看看哈...
回复

使用道具 举报

瘋狂cc 发表于 2005-5-16 20:17:40 | 显示全部楼层
他的演示截圖
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-22 03:07 , Processed in 0.037242 second(s), 7 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表