每次用户单击动态按钮时,我都需要进行跟踪。我还需要知道他点击的是什么产品。现在我有这个按钮:
<div class="buy">
<a target="_blank" href="<?php echo $this->product['from']; ?>">
<img src="http://example.com/data/images/buy.jpg" alt="buy">
</a>
</div>
Href 将用户发送到另一个站点以购买产品。我如何在 PHP 上跟踪这个?