下载文件的点击数回填

WBOY
Release: 2016-06-01 14:31:21
Original
870 people have browsed it
需要名称为book的MySQL数据库表
表中含有下列字段:
id  下载的文件的唯一标识
downnum 点击数

first.php
{
?>


 


&id=">click here download


};?>
 
ddload.php

   include("data.inc.php");
   if($incerror)
   {
      echo $incerror;
      exit;
   }
   if(empty($dnnum)) $dnnum = 1;
   else $dnnum ++;
   $sql = "update book set downnum ='$dnnum' where id =$id";
   mysql_query($sql);
   mysql_close($connect);
   header("location:$purl");
?>
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template