While($enreg=mysql_fetch_array($res))
{
$link_d.="<a href=\"$enreg[link]\" target=\"_blank\"><font color=\"red\">clic here to download</font></a></td>"
}
我想使用href所以它导致下载链接,也将id发送到php文件,这样我就可以获得文件下载次数! 我们如何将href用于多个链接!
答案 0 :(得分:3)
你做不到。链接只能指向一个资源。
相反,您应该做的是让您的PHP脚本重定向到该文件。链接指向PHP脚本与计数器,然后设置Location:
标头(自动设置302重定向状态代码),其值为您要重定向到的URL。
此外,您应该在HTML上下文中使用的任何变量数据周围使用htmlspecialchars()
,以确保生成有效的HTML。
答案 1 :(得分:1)
理想情况下,您需要进行一些检查以确定它是否是人工下载(网络抓取工具可能会触发它 - 我们将在链接中放置无跟踪,这将有所帮助)。您也可以使用数据库,但这会变得更复杂。我首选的方法是使用Google Analytics Events。但是这里有一个简单的PHP脚本,可以满足您的需求,而不需要其他解决方案的复杂性。
首先修改链接以使用跟踪器脚本和urlencode
$link_d.= '<a style="color:red" href="tracker.php?url='.urlencode($enreg[link]).'" target="_blank">click here to download</a>';
}
然后创建一个记录下载的脚本(tracker.php)
<?php
// keep stats in a file - you can change the path to have it be below server root
// or just use a secret name - must be writeable by server
$statsfile = 'stats.txt';
// only do something if there is a url
if(isset($_GET['url'])) {
//decode it
$url = urldecode($_GET['url']);
// Do whatever check you want here to see if it's a valud link - you can add a regex for a URL for example
if(strpos($url, 'http') != -1) {
// load current data into an array
$lines = file($statsfile);
// parse array into something useable by php
$stats = array();
foreach($lines as $line) {
$bits = explode('|', $line);
$stats[(string)$bits[0]] = (int)$bits[1];
}
// see if there is an entry already
if(!isset($stats[$url])) {
// no so let's add it with a count of 1
$stats[$url] = 1;
} else {
// yes let's increment
$stats[$url]++;
}
// get a blank string to write to file
$data = null;
// get our array into some human readabke format
foreach($stats as $url => $count) {
$data .= $url.'|'.$count."\n";
}
// and write to file
file_put_contents($statsfile, $data);
}
// now redirect to file
header('Location: ' . $url);
}
答案 2 :(得分:0)
你不能。
Anchor意味着导致一个资源。
通过使用计算命中和重定向到资源的中间脚本,您可以通过简单的方式解决您的问题。
例如
<a href="redirect.php?id=42">Click here to download</a>
redirect.php
// Increment for example, a database :
// UPDATE downloads SET hits = (hits + 1) WHERE id=42
// Get the URI
// SELECT uri FROM downloads WHERE id=42
// Redirect to the URI
// (You may also need to set Content-type header for file downloads)
header( "Location: $uri" );
您可以通过将uri作为第二个参数传递来优化它,这样您就不需要在重定向时获取它。
<a href="redirect.php?id=42&uri=/files/example.pdf">Click here to download</a>
收集此类统计信息的另一种方法是使用统计提供商提供的一些javascript工具,例如Google Analytics或Piwik,为点击事件添加一个监听器。
它对您的基本代码的侵入性较小,但不会让您轻松地重复使用您网站中收集的数据(例如,如果您想要显示“热门下载”列表)。
答案 3 :(得分:0)
使用下载脚本创建一个文件,例如download.php
,并通过它下载所有下载内容。在此页面中更新您的计数器并使用适当的标题进行下载。
例如:
网址可能是download.php?id=1&file=yourfile
download.php
中的
//get id and file
//database operation to update your count
//headers for download