Home  >  Article  >  CMS Tutorial  >  How to dynamically call the number of clicks on the homepage list page of DedeCMS

How to dynamically call the number of clicks on the homepage list page of DedeCMS

藏色散人
藏色散人Original
2020-01-10 09:19:052170browse

How to dynamically call the number of clicks on the homepage list page of DedeCMS

How to dynamically call the number of clicks on the homepage list page of DedeCMS?

Dynamic call on the homepage list page of DedeCMS Number of clicks

Recommended learning:梦Weavercms

The number of article clicks on the home page and list page in DedeCMS is not dynamically called by default, but only when updated. The number of clicks will be updated. The solution to dynamic calling is as follows:

Find count.php in the /plus directory, make a copy and name it viewclick.php. Open viewclick.php with an editor and delete the lines

if(!empty($maintable))
{
    $dsql->ExecuteNoneQuery(" UPDATE `{$maintable}` SET click=click+1 WHERE {$idtype}='$aid' ");
}
if(!empty($mid))
{
    $dsql->ExecuteNoneQuery(" UPDATE `dede_member_tj` SET pagecount=pagecount+1 WHERE mid='$mid' ");
}

The code is the two lines inserted into the database and saved

Finally, add

<scriptsrc="[field:phpurl/]/viewclick.php?view=yes&aid=[field:id/]&mid=[field:mid/]"type=&#39;text/javascript&#39; language="javascript"></script>

to the home page and list page where the number of clicks needs to be called

The above is the detailed content of How to dynamically call the number of clicks on the homepage list page of DedeCMS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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