please can any one help with a PHP/Mysql script that can enable the download of PDF stored in a blob when a link 'DOWNLOAD NOW' is clicked. i have tried but no result. kindly help Thanks
+1
A:
$pdf = ... // data retrieved from BLOB field
header("Content-Type: application/pdf");
header('Content-Disposition: attachment; filename="THE_NAME_OF_THE_FILE_TO_BE_DOWNLOADED.pdf"');
echo $pdf;
bogdanvursu
2010-06-04 10:11:49
Consider adding a `Content-Length` header - especially if the files are "big".
jensgram
2010-06-04 10:14:03