POST TIME:2020-04-12 21:49
1、在織夢程序的plus文件夾新建php文件并命名為feedcount.php,在其中添加代碼:
1 2 3 4 5 6 7 8 9 | 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']; } ?>位用戶了發(fā)表評論"); |
2、在要顯示評論總數(shù)的位置添加JS調(diào)用代碼:
1 | <script type="text/javascript" src="{dede:field name='phpurl'/}/feedcount.php?aid={dede:field.id/}"></script> |
3、保存文件即可。