tags:

views:

17

answers:

1

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
Consider adding a `Content-Length` header - especially if the files are "big".
jensgram