Jump to content

PDF Files in MySQL


krex10

Recommended Posts

Hey guys,

 

I am not sure if this is the right place for this question but here goes:

 

I saved a bunch of pdf files in a MEDIUMBLOB format in a database, and now I want to be able to open/read them and trigger a Print Dialog to print them by simply clicking a link. Is that possible?

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/236263-pdf-files-in-mysql/
Share on other sites

http://php.net/manual/en/function.header.php

 

check the part where:

<?php

// We'll be outputting a PDF

header('Content-type: application/pdf');

 

// It will be called downloaded.pdf

header('Content-Disposition: attachment; filename="downloaded.pdf"');

 

// The PDF source is in original.pdf

readfile('original.pdf');

?>

 

Link to comment
https://forums.phpfreaks.com/topic/236263-pdf-files-in-mysql/#findComment-1214779
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.