如何使用FPDF和WriteHTML将表头添加到所有页面

时间:2015-10-13 16:08:18

标签: php html-table fpdf

我在横向模式下使用FPDF生成一个大表(多个页面),并且需要在所有页面中添加表头。我怎样才能做到这一点?这是我的代码:

require('html_table.php');

$pdf=new PDF();
$pdf->AddPage('L');
$pdf->SetFont('Arial','',12);

$html='<table border="1">';
for ($i=0; $i<300; $i++)
{
    $html.='<tr><td>hello</td><td>hello</td><td>hello</td><td>hello</td></tr>';
}
$html.='</table>';

$pdf->WriteHTML($html);
$pdf->Output("reporte_semanal_".date("d").date("m").date("Y")."_".date("H")."H".date("i")."M".date("s")."S".".pdf", "D");

0 个答案:

没有答案