discuz 帖子索引
discuz 帖子索引
此内容年代久远,谨慎参考
php<?php 
define('APPTYPEID', 4);
define('CURSCRIPT', 'sitemap');
require './source/class/class_core.php';
$discuz = &discuz_core::instance();
$discuz->cachelist = $cachelist;$discuz->init();
$navtitle='站点标题';
$metakeywords='关键字';
$metadescription='描述';
include template('common/header');
echo '
<style type="text/css">
a:link {color: #333; text-decoration: none;}
a:visited {text-decoration: none; color: #666;}
a:hover {text-decoration: none; color: #F90;}
a:active {text-decoration: none; color: #F90;}
.newtid{width:99.7%;float:left; margin-top:10px; border: 1px dotted #F90; margin-bottom:10px; }
.newtid li{padding-left:2%;font-size: 12px;width:48%; float:left;line-height: 25px;}
.newtid li a{color: #333;}
.newtit strong a{position: absolute;bottom: 98765px;}
.newtid h2{font-size: 16px;line-height: 45px;}
</style> 
<ul class="newtid">';
$site_num  = DB::result(DB::query("SELECT COUNT(`tid`) FROM ".DB::table('forum_thread')." as a inner join ".DB::table('forum_forum')." as b on a.fid=b.fid where a.displayorder=0 ORDER BY a.tid DESC"));
$site_num = $site_num ? $site_num :0;
$site_listnum = 100;
$site_page = intval($_G['gp_page']) ? intval($_G['gp_page']) :1;
$site_max = $site_page > 0 ? $site_listnum * ($site_page-1) : 0;
$site_max2 =   $site_max2 + 100;
$querys = DB::query("SELECT a.tid,a.subject,a.fid,b.name FROM ".DB::table('forum_thread')." as a inner join ".DB::table('forum_forum')." as b on a.fid=b.fid where a.displayorder=0 ORDER BY a.tid DESC LIMIT ".$site_max.",".$site_max2);
$multipage = multi($site_num, $site_listnum,$site_page, "sitemap.php");
$i=1;while($threadfid = DB::fetch($querys)){echo '<li>'.$i.'、<em>[<a href="forum.php?mod=forumdisplay&fid='.$threadfid['fid'].'">'.$threadfid['name'].'</a>]</em> <a href="forum.php?mod=viewthread&tid='.$threadfid['tid'].'" target="_blank">'.$threadfid['subject'].'</a></li>';$i++;} 
echo $multipage; 
echo '</ul>';
echo '&nbsp';
 
include template('common/footer');
?>
作者
ragnaroks
发布时间
2014-11-18
创作协议