⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 downloadsoft.php

📁 十大精典PHP项目开发全程案例+代码
💻 PHP
字号:
<?php
$id=$_GET[id];
include_once("conn/conn.php");
$sql=mysql_query("select * from tb_soft where id='".$id."'",$conn);
$info=mysql_fetch_array($sql);
$path=$info[address];
if(file_exists($path)==false)
{
 echo "<script>alert('对不起,本站暂时停止提供该软件下载!');history.back();</script>";
 exit;
}else{
mysql_query("update tb_soft set click=click+1 where id='".$id."'",$conn);
echo mysql_error();
$filename=basename($path);
$file=fopen($path,"r");
header("Content-type:application/octet-stream");
header("Accept-ranges:bytes");
header("Accept-length:".filesize($path));
header("Content-Disposition:attachment;filename=".$filename);
echo fread($file,filesize($path));
fclose($file);
exit;}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -