Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

insert a pdf file into mysql with php 1

Status
Not open for further replies.

999000333

Programmer
Nov 20, 2006
39
Hello
I have to insert a pdf file into a mysql table by using php...can anyone help me on how to do that..
Thank you
 
Code:
$file = "file.pdf";
$contents = file_get_contents($file);
mysql_query("Insert into table set pdfcontents = '".mysql_escape_string($contents)."'");
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top