テーブルでphp/mysqlを使用しています。「PDF」という列があります。
各行には、Web サーバー上の 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"]."");
しかし、まだ運がありません - 私にできることはありますか?