如何使用php创建pdf

时间:2012-12-15 11:14:30

标签: php mysql pdf pdf-generation

我想为我的PHP网页创建PDF文件,它必须是一些像创建PDF的按钮 然后用户点击按钮PDF文件必须自动生成 我的网页动态页面它包含MySQL表我是怎么做的,它有任何开源软件...

2 个答案:

答案 0 :(得分:1)

您可以使用fpdf制作PDF:http://fpdf.org/

<?php
require('fpdf.php');

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>

答案 1 :(得分:0)

像往常一样生成PHP,但添加header

header("Content-Type: application/pdf");
header('Content-Disposition:inline; filename="testing.pdf"'); //view in browser

或者

 header("Content-Type: application/pdf");
 header('Content-Disposition:attachment; filename="testing.pdf"'); //force download