如何在FPDF生成的每个页面上打印标题

时间:2014-03-18 13:07:44

标签: php fpdf

我使用FPDF从数据库生成报告,我希望在生成的PDF标题上打印报告的标题

我的代码看起来像这样    

function Header()
{
$name="Export PDF";
$this->SetFont('Arial','B',15);
$this->Image('images/pdflogo.png', 5,5,60);
$this->Image('images/hr1.jpg', 10,25,190);
$this->Text(100,25,'$d');

$this->Cell(80);

$this->SetFont('Arial','B',9);

$this->Ln(20);
}
?> 

任何机构都可以告诉我如何做到这一点!

1 个答案:

答案 0 :(得分:0)

使用:$this->Cell(80, 10, 'Example Report Title' );

它将在每个页面标题上显示示例报告标题。