index.php 955 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. require("../../class/connect.php");
  3. require("../../class/db_sql.php");
  4. require("../../data/dbcache/class.php");
  5. $link=db_connect();
  6. $empire=new mysqlquery();
  7. $editor=1;
  8. //下载附件
  9. function DoDownFile($fileid){
  10. global $empire,$public_r,$class_r,$dbtbpre;
  11. if(empty($fileid))
  12. {
  13. printerror("ErrorUrl","history.go(-1)",1);
  14. }
  15. $r=$empire->fetch1("select fileid,path,filename,classid,fpath from {$dbtbpre}enewsfile_1 where fileid='$fileid'");
  16. if(empty($r[fileid]))
  17. {
  18. printerror("ErrorUrl","history.go(-1)",1);
  19. }
  20. //下载数加1
  21. $sql=$empire->query("update {$dbtbpre}enewsfile_1 set onclick=onclick+1 where fileid='$fileid'");
  22. $ok=1;
  23. //按栏目
  24. $fspath=ReturnFileSavePath($r[classid],$r[fpath]);
  25. $filepath=$r[path]?$r[path].'/':$r[path];
  26. $downurl=$fspath['fileurl'].$filepath.$r[filename];
  27. if($ok)
  28. {
  29. Header("Location:$downurl");
  30. }
  31. }
  32. //下载附件
  33. $fileid=(int)$_GET['fileid'];
  34. DoDownFile($fileid);
  35. db_close();
  36. $empire=null;
  37. ?>