0

PHP Webページ用のPDFファイルを作成したいのですが、PDFを作成するようなボタンが必要です。次に、ユーザーがクリックするボタンPDFファイルは、MySQLテーブルを含むWebページの動的ページを自動的に生成する必要があります。 ..。。

4

2 に答える 2

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();
?>
于 2012-12-15T11:18:26.297 に答える
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
于 2012-12-15T11:16:42.343 に答える