我有一个查询。我想知道如何使用 php 将数据动态插入到 pdf 中。我不希望从数据库中检索它。但是用户可以在 pdf 的那个文本字段上写一些东西。
希望得到帮助,谢谢
我有一个查询。我想知道如何使用 php 将数据动态插入到 pdf 中。我不希望从数据库中检索它。但是用户可以在 pdf 的那个文本字段上写一些东西。
希望得到帮助,谢谢
您可以使用http://www.fpdf.org/:
从例子:
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>
因此,直接从表单中获取可以是:
<html><head></head>
<body>
<form method="POST" action="#">
<input type="text" name="content"><input type="submit" name="post">
</form>
</body>
</html>
<?php
require('fpdf.php');
if(isset($_POST['content'])){
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,$_POST['content']);
$pdf->Output();
}
?>
如果您已有 PDF
您可以使用此扩展名导入它:
http://www.setasign.de/products/pdf-php-solutions/fpdi/
插件页面是自我解释的。