在服务器上存储 Cookie 数据

Storing cookie data on server

本文关键字:Cookie 数据 存储 服务器      更新时间:2023-09-26

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

键值计数 1 并在再次命中时更新为 2 .我该怎么做?

把它放在脚本的最顶部:

<?php
session_start();
$HIT=1;
$total=$from_db_count+$HIT;
//create function that generates the total hits from DB and return $from_db_count
?>