我需要上传blob文件的帮助。
我有这段代码:
echo "<tr><td>File document:</td>";echo"<td>";
echo '<a href="download_file.php?FileDocument=' . $show['id']. '">Open file</a>';
我需要帮助下一个代码。 我已经尝试了各种代码而没有工作。我只需要最简单的代码
<?php
include("connect.php");
if (isset($_GET["id"]) && ctype_digit($_GET["id"])) {
$sql = mysql_query("Select * From tb_work where id = $id");
if ($sql) {
if (mysql_num_rows($sql)==1) {
$line = mysql_fetch_row($sql);
$file = $line['FileDocument'];
if ($file!='') {
header('Pragma: public');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Type: application/pdf');
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.filesize($file));
echo $file;
}
}
}
}
?>
结果这是空白页
答案 0 :(得分:0)
您尝试使用$_GET["id"]
,但您的网址中没有id
参数,只有FileDocument
。
试试$_GET["FileDocument"]
。