Home > CMS Tutorial > DEDECMS > body text

How does DEDECMS call the number of article comments?

藏色散人
Release: 2019-11-19 10:41:38
Original
1918 people have browsed it

How does DEDECMS call the number of article comments?

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
Copy after login

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
Copy after login

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'";
Copy after login


Insert the content of position 2:

$rs = $dsql->ExecuteNoneQuery($inquery2); 
if(!$rs) 
{ 
echo $dsql->GetError(); 
exit(); 
}
Copy after login

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!

Related labels:
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!