PHP code in viewing a pdf file from a mysql database -
how view .pdf file in webpage using php? pdf file in mysql database. thanks.
if echo contents database browser , provide appropriate content type through http headers you're done!
<?php header('content-type: application/pdf'); echo $pdf_from_database;
Comments
Post a Comment