如何将FPDF创建的PDF存储在MySQL数据库中?
答案 0 :(得分:1)
您确定确实需要将生成的PDF保存到数据库吗?也许您可以将PDF保存到文件系统,并将路径保存到数据库中的文件中。
答案 1 :(得分:0)
在您的数据库中:
保存强>
//make a pdf
$pdf=new FPDF();
$pdf->AddPage();
//set pdf to savable type
$pdfcontent = $pdf->Output("", "S");
//save pdf to database
$mysqli=new mysqli("hostname", "username", "password", "database");
$stmt = $mysqli->prepare("INSERT INTO pdfs (pdf) VALUES (?)");
$stmt->bind_param('s', $pdfcontent);
$stmt->execute();
<强>提取强>
$mysqli=new mysqli("hostname", "username", "password", "database");
$stmt = $mysqli->prepare("SELECT pdf FROM pdfs WHERE id = ?");
$stmt->bind_param('i',$id);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($pdfcontent);
while($stmt->fetch()){
header("Content-Length: " . strlen($pdfcontent) );
header("Content-Type: application/octet-stream");
header('Content-Disposition: attachment; filename="WarriorDeals_Voucher_'.$number.'-'.$numIndex.'.pdf"');
header("Content-Transfer-Encoding: binary\n");
echo $pdfcontent;
}
答案 2 :(得分:0)
我不确定我理解你的问题,但万一我觉得你问的是...... 您将需要根路径以及用于存储文件的文件名来创建正确的数据库条目。您必须使用mysql数据库和插入查询来输入它,只要选择查询以检索其位置并在您的网站中使用它。 在w3schools阅读PHP / mySQL的基础知识,并考虑FPDF,阅读上传的常见问题解答here。