如何跟踪 php 元素的点击?
可能的重复:
如何为 uuid 设置 cookie
您好,我有一个唯一的 id 生成器( < em>uniqid() )在我的网站上为每个新访问者生成一个唯一的 ID(该 ID 保存在每个用户的 Cookie 中)。每个访问者都会获得以下格式的自己的特殊链接:http://website.com/id=12345 。查看我的网站,看看我的意思:(请不要说我是“网络钓鱼”、“诈骗”等。该网站项目完成后实际上将成为一个真正的工作系统。) http://freexboxlivecodes.cz.cc
我的问题是如何跟踪每个访问者对唯一链接的唯一点击开始使用 php。我尝试了一些脚本,但它们都要求我粘贴特定页面来跟踪。如果有人知道如何做到这一点,请回答。谢谢。
Possible Duplicate:
How to set cookies for uuid
Hello, I have a unique id generator ( uniqid() ) on my site which generates a unique id for every new visitor (the id's are saved in cookies for every user). Each visitor gets their own special link in this format: http://website.com/id=12345. Check out my site to see what i mean: (please don't say that im "phishing", "scamming", etc. This site project is actually going to be a real working system when complete.) http://freexboxlivecodes.cz.cc
My question is how to track unique clicks on the unique link every vistor gets using php. I tried some scripts but they all require that i paste a specific page to track. If anyone knows how this can be done, please answer. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
唯一诚实的答案是:你不能。基本上有两种可能的方法,但它们都有缺陷:
The only honest answer is: You can't. There are basically two possible approaches, but all of them flawed:
设置 cookie 并存储 IP。如果cookie存在或者该IP最近访问过该链接,则不计入点击。
使用 evercookie 之类的东西也可能有助于防止作弊。
Set a cookie and store the IP. If the cookie exists or the IP has accessed the link recently, do not count the click.
Using something like evercookie might also be helpful against cheaters.