我正在使用FPDF创建PDF报告.现在,如何在页面底部的报表的每个页面上生成页码.
以下是生成2页PDF的示例代码.
@H_301_7@以下是生成2页PDF的示例代码.
- <?PHP
- require('fpdf.PHP');
- $pdf = new FPDF();
- $pdf->AliasNbPages();
- $pdf->AddPage();
- $pdf->SetFont('Arial','',16);
- $start_x=$pdf->GetX();
- $current_y = $pdf->GetY();
- $current_x = $pdf->GetX();
- $cell_width = 25; $cell_height=14;
- $j = 20; // This value will be coming from Database so we dont know how many pages the report is going to be
- for ($i = 0; $i<$j ; $i++){
- $pdf->MultiCell($cell_width,$cell_height,'Hello1',1);
- $current_x+=$cell_width;
- $pdf->Ln();
- }
- $pdf->Output();
- ?>