Count Number of Clicks on a link (Without onclick)(计算链接上的点击次数(没有 onclick))
问题描述
我有这样的链接
"""<a href="http://xyz.com/pz/jjjjj/"><img src="http://xyzsho/mbd.com/42/1319/11110/" alt="" border="0"></a>""""
存储在 mysql 数据库中.用户从其他网站复制这些链接并将其上传到数据库.这些链接现在将显示在我们的网站上.如何计算和存储每个链接的点击次数.这里我无法使用 onclick.
stored in a mysql database. The user copies these links from some other website and uploads it to the database. These links are now to be displayed on our site. How can I count and store the number of clicks on each link. Here i am unable to use onclick.
我正在使用 PHP 和 MySQL.
I am using PHP and MySQL.
谢谢
推荐答案
您需要重写 URL 以首先访问可用于收集统计信息的其他服务器,然后将用户重定向到他们的初始 URL.
You need to rewrite the URL to first hit some other server you can use for statistics gathering, and then redirect the user to their initial URL.
这是 Twitter 或 Facebook 在您点击其中一个站外链接时使用的那种东西.
This is the sort of thing used by Twitter or Facebook any time you click one of their off-site links.
本质上,您正在编写 URL 缩短器.
Essentially, you're writing a URL shortener.
这篇关于计算链接上的点击次数(没有 onclick)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:计算链接上的点击次数(没有 onclick)
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01