How does DEDECMS call the number of article comments?
Dreamweaver DEDECMS calls the number of comments on an article
Dreamweaver DEDECMS wants to call the number of comments on an article, you must modify the data table (dede_archives) and add a field Used to store the number of comments on this article, and then call the value of this field.
Recommended learning: dedecms tutorial
Solution:
dede_archives 添加postcount int(10) UNSIGNED default 0
Then open plus\feedback.php and find about 220
//保存评论内容 if($comtype == 'comments') { $arctitle = addslashes($title); if($msg!='') { $inquery = "INSERT INTO `cmsxx_feedback`(`aid`,`typeid`,`username`, `arctitle`,`ip`,`ischeck`,`dtime`, `mid`,`bad`,`good`,`ftype`,`face`,`msg`) VALUES ('$aid','$typeid','$username','$arctitle','$ip','$ischeck','$dtime', '{$cfg_ml->M_ID}','0','0','$feedbacktype','$face','$msg'); "; //插入位置1 $rs = $dsql->ExecuteNoneQuery($inquery); if(!$rs) { echo $dsql->GetError(); exit(); } //插入位置2
Insert the content of position 1:
$rowc = $dsql->GetOne("Select count(*) as count from `dede_feedback` where aid ='$aid'"); $pcount = $rowc ['count']; $inquery2 = "update `dede_archives` set postcount = '$pcount' where id = '$aid'";
Insert the content of position 2:
$rs = $dsql->ExecuteNoneQuery($inquery2); if(!$rs) { echo $dsql->GetError(); exit(); }
The above is the detailed content of How does DEDECMS call the number of article comments?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor
