華府江山
http://203.72.56.8/phpBB3/

下載並計數程式
http://203.72.56.8/phpBB3/viewtopic.php?f=42&t=272
1 頁 (共 1 頁)

發表人:  alex [ 2009年 10月 15日, 21:50 ]
文章主題 :  下載並計數程式

<?php
// 下載並計數程式

$link_file = $_GET['link_file']; //下載檔名

$DatabaseTable = "Mytable";
$SQL = "SELECT * FROM $DatabaseTable WHERE dfilename='$link_file' ";
$Result2 = mysql_query($SQL) or die('Invalid query: ' . mysql_error());
$total_fields = mysql_num_fields($Result2);

//讀取下載次數
while ($row = mysql_fetch_row($Result2)) {
for ($i = 0; $i < $total_fields-2; $i++)
$add_times = $row[7];
}

// 累計下載次數
$sql="UPDATE $DatabaseTable SET dltimes='$add_times'+1 WHERE dfilename='$link_file'";
mysql_query($sql);

// 檔案下載
$download_file= "./dl/".$link_file;
header("Location:$download_file");

?>

1 頁 (共 1 頁) 所有顯示的時間為 UTC + 8 小時
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/