我在我的表中使用 php/mysql 我有一个名为“PDF”的列。
每行在我的网络服务器上都有一个 PDF 文件的路径,我正在使用这个 PHP 代码:
$sql="SELECT * from table1 where customer_sequence = '53' and invoice_number = '1234' and sequence = '7839' ";
$rs=mysql_query($sql,$conn) or die(mysql_error());
$result=mysql_fetch_Array($rs);
header('Content-disposition: attachment; filename=/path/to/file/'.$result["pdf"].'');
header('Content-type: application/pdf');
readfile('/path/to/file/'.$result["pdf"].'');
SQL 工作正常,但是一旦它尝试下载它就什么也不做。
我也试过:
header("Location: /path/to/file/".$result["pdf"]."");
但仍然没有运气 - 任何想法我能做什么?