How could i insert a pdf file in mysql using PHP and when i access from database it must be open in .html format plz give me reply
How could i insert a pdf file in mysql using PHP
Collapse
X
-
When storing a file I normally just store the file in the file system of my web server and store it's location in the MySQL DB. However you could probably store it in a BLOB (or huge blob).
pdf is not HTML ? Don't really understand the second bit, but just return the pdf file with the appropriate content type header.
Comment