-1

我有 js 客户端代码,每次用户打开我的网址 xyz.com 时都会触发一些事件 x。我想在每次用户打开网址时增加计数

键值计数 1 并在再次命中时更新为 2。我怎样才能做到这一点?

4

1 回答 1

0

将其放在脚本的最顶部:

<?php
session_start();
$HIT=1;
$total=$from_db_count+$HIT;
//create function that generates the total hits from DB and return $from_db_count
?>
于 2013-10-28T14:31:21.523 回答