我在横向模式下使用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");