快捷搜索:   nginx

dede使用JS实时动态调用评论数

DEDECMS自带的评论系统,虽然功能比较粗糙,但是聊胜于无,有时候我们需要在网站首页中调用会员评论数量,但因为网页都是静态页面,如果每有一个评论都要去更新html的话就有点浪费资源了,这里给大家一个JS调用评论数的方法。

1、在plus文件夹下新建feedcount.php文件 内容如下
document.write(“共有<?php
require_once(dirname(__FILE__).”/../include/common.inc.php”);
$row = $db->GetOne(“select count(*) as fc from dede_feedback
where aid=’{$aid}’”);
if(!is_array($row)){
echo “0″;
}else {
echo $row['fc'];
}
?>位用户了发表评论”);

2、在内容页模板中插入如下代码调用
<script type=”text/javascript” src=”/plus/feedcount.php?aid={dede:field name=ID/}”></script>

3、在列表页或首页模板中插入如下代码
<script type=”text/javascript” src=”/plus/feedcount.php?aid=[field:id/]“></script>
顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论