每次有人点击它时,我都需要跟踪一个按钮。我创建了一个文件“out.php”来向我发送电子邮件并重定向到我页面外的链接。此代码重定向但邮件不发送。
<div class="buyprod">
<a target="_blank" href="http://xxx.com/out.php?url=<?php echo urlencode($this->product['from'])?>">
<img src="http://xxx.com/buybtn.jpg" alt="buy"/>
</a>
</div>
out.php
<?php
$url = urldecode($_GET['url']);
header("Location: ".$url);
$message = "Someone clicked buy: ";
$link = $this->product['from'];
mail('xxx@xxx.com', '@Buy', $message.$link);
exit;
有人知道这段代码有什么问题吗?提前致谢!