attach_down.php
来自「CRM 不仅仅是一个管理名词和管理概念」· PHP 代码 · 共 42 行
PHP
42 行
<?
########################################
#OsoonCrm
#附件下载
########################################
include "include/db.inc.php";
include "include/check.inc.php";
$sql="select * from $tbl_crm_attach where AttachID='$AttachID'";
$res=@mysql_query($sql);
if ($row=@mysql_fetch_array($res))
{
if ($AttachName != $row[AttachName])
{
echo "不能这样操作!";
exit;
}
$attach = $upload_path.$row[AttachName];
$filename = $row[FileName];
header("Content-disposition:attachment; filename=$filename");
header("Content-Length: ".filesize($attach));
$fp = @fopen("$attach", "r");
if (!$fp)
{
echo "打开附件失败";
exit;
}
else
{
while ($buffer = @fgets($fp, 1024)) {
echo $buffer;
}
}
@fclose($fp);
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?