我是PHP的新手,我想将pdf保存到数据库中 我想知道将fpdf保存到数据库的最佳方法是什么? 我正在使用BLOB类型来保存pdf的内容,但是我希望将文件pdf读入表格并在我点击文件时查看内容。
获取内容的代码是:
$query = "select nomeUser,email,nomeVoucher,categoria,preco,confirmacao,filePDF
from historico
LIMIT $start, $per_page";
while ($stmt->fetch()) {
if($confirmacao == "a confirmar"){
echo("<tbody >");
echo("<tr><td>$nomeUser</td>");
echo "<td>$email</td>";
echo("<td >$nomeVoucher</td>");
echo("<td >$categoria</td>");
echo("<td>$preco €</td>");
echo("<td>$confirmacao</td>");
filePDF是我保存fpdf内容的名称 我怎么能这样做?