Home > CMS Tutorial > DEDECMS > body text

How does DedeCMS call the number of comments on the article content page?

藏色散人
Release: 2019-12-03 09:23:04
Original
2276 people have browsed it

How does DedeCMS call the number of comments on the article content page?

How does DedeCMS call the number of comments on the article content page?

Number of comments on the article content page called by DedeCMS directory, create a file named: feedcount.php, the code is as follows:

document.write("共有<?php
require_once(dirname(__FILE__)."/../include/common.inc.php");
$row = $db->GetOne("select count(*) as fc from dede_feedback where aid=&#39;{$aid}&#39;");
if(!is_array($row)){
echo "0";
}else {
echo $row[&#39;fc&#39;];
}
?>位用户了发表评论");
Copy after login

Step 2: Then add the following JS code to your template where you need to display the total number of comments:

The above is the detailed content of How does DedeCMS call the number of comments on the article content page?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!