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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 关掉调用论坛帖子 上一篇 下一篇的问题

[复制链接]
918wz 发表于 2010-8-29 11:45:09 | 显示全部楼层 |阅读模式
  1. $querylast = $_SGLOBAL['db_bbs']->query('SELECT tid FROM '.tname('threads', 1).' WHERE tid<'.$tid.' and fid='.$fid.' order by tid desc limit 0,1');
  2. $querylast = $_SGLOBAL['db_bbs']->query('SELECT tid FROM '.tname('threads', 1).' WHERE fid='.$fid.' and lastpost>'.$thread['lastpost'].' order by lastpost limit 0,1');
  3. $threadlast = $_SGLOBAL['db_bbs']->fetch_array($querylast);
  4. $threadlast[tid]="viewthread-".$threadlast[tid].".html";
  5. //$querynext = $_SGLOBAL['db_bbs']->query('SELECT tid FROM '.tname('threads', 1).' WHERE tid>'.$tid.' and fid='.$fid.' order by tid limit 0,1');
  6. $querynext = $_SGLOBAL['db_bbs']->query('SELECT tid FROM '.tname('threads', 1).' WHERE fid='.$fid.' and lastpost<'.$thread['lastpost'].' order by lastpost desc limit 0,1');
  7. $threadnext = $_SGLOBAL['db_bbs']->fetch_array($querynext);
  8. $threadnext[tid]="viewthread-".$threadnext[tid].".html";
复制代码

这段代码是supesite 调用论坛帖子,上一篇,下一篇的代码。其中有一点问题。
这段代码当点到最后一页的时候显示viewthread-.html的错误页,有什么办法,当上一篇没有或者下一篇没有数据的时候(也就是说本来就是第一篇,没有再上一篇),自动隐藏或显示#号。
危险的蘑菇 发表于 2010-8-30 16:04:12 | 显示全部楼层
楼主查询后需要判断是否有数据,如果没有就特殊处理一下,不能不验证就赋值哦
回复

使用道具 举报

la367 发表于 2010-8-30 16:34:48 | 显示全部楼层
进来关注一下·~
回复

使用道具 举报

 楼主| 918wz 发表于 2010-9-10 09:16:47 | 显示全部楼层
危险的蘑菇 发表于 2010-8-30 16:04
楼主查询后需要判断是否有数据,如果没有就特殊处理一下,不能不验证就赋值哦

具体怎么做呢
回复

使用道具 举报

dongdong0925 发表于 2010-9-10 09:58:00 | 显示全部楼层
将你代码中的这部分
  1. $threadnext = $_SGLOBAL['db_bbs']->fetch_array($querynext);
  2. $threadnext[tid]="viewthread-".$threadnext[tid].".html";
复制代码
改为
  1. $threadnext = $_SGLOBAL['db_bbs']->fetch_array($querynext);
复制代码

在你的前台页面里判断$threadnext[tid]是否为空,不为空的话显示下一篇连接,否则不显示即可。
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 21:34 , Processed in 0.020636 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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