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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 知道插件的分页怎么写

[复制链接]
axengine 发表于 2009-8-12 23:05:25 | 显示全部楼层 |阅读模式
UCHome插件
语言编码: GBK简体 
插件名称:
插件作者:
适用版本: UCHome 2.0
  1. $perpage = 10;
  2. $start = empty( $_GET['start'] ) ? 0 : intval( $_GET['start'] );
  3. ckstart( $start, $perpage );

  4. $uid = (int)$_GET['uid'];
  5. if (empty($uid)) {
  6.         $uid = $_SGLOBAL['supe_uid'];        //如果地址栏没有uid参数,默认就是自己
  7. }

  8. $type = empty( $_GET['type'] ) ? 0 : intval( $_GET['type'] );
  9. $status = empty($_GET['status']) ? 0 : intval($_GET['status']) ;
  10. $where = " WHERE 1 ";
  11. if (!empty($type)) {
  12.         $where .= " AND typeid = {$type} ";
  13. }
  14. if (!empty($status)) {
  15.         $where .= " AND status = {$status} ";
  16. }

  17. $actives = array( $type => " class="active"" );
  18. $theurl = "ask.php?do=ask&ac={$ac}&typeid={$typeid}&status={$status}";

  19. $sql = "SELECT * FROM ".tname("app_ask")." $where ORDER BY id DESC limit $start,$perpage";

  20. $query = $_SGLOBAL['db']->query( $sql );
  21. $list = array( );
  22. $count = 0;
  23. while ( $value = $_SGLOBAL['db']->fetch_array( $query ) )
  24. {
  25.     $value['typename'] = $gEumsType[$value['typeid']];
  26.     $value['content'] = getstr(strip_tags($value['content']), 150);
  27.         $list[] = $value ;
  28.         $count ++ ;
  29. }

  30. $multi = smulti( $start, $perpage, $count, $theurl );
复制代码
按照这个代码的分页比较丑陋,和UCH 日志的分页相比太丑陋了,怎么才能修改和UCH日志分页那样的样式。
五元超市 发表于 2009-8-13 12:01:10 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

七秒钟 发表于 2009-8-13 18:43:43 | 显示全部楼层
代码 实在看不懂
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-17 08:54 , Processed in 0.027251 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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