Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
831 views
in Technique[技术] by (71.8m points)

php - Table heading on every page using MPDF

I want the table heading to be displayed on each page while generating pdf using MPDF library.

$mpdf = new MpdfMpdf([
'mode'=>'utf-8',
'format' => 'A4-L'
]);

$mpdf->SetHTMLHeader("<table>
                    <tr>
                          <th>Sl No.</th>
                          <th>Name</th> 
                    </tr>
");

for($i=0; $i<500;$i++){
      $mpdf->WriteHTML("<tr>");
      $mpdf->WriteHTML("<td>".$res[$i]["slno"]."</td>");
      $mpdf->WriteHTML("<td>".$res[$i]["name"]."</td>");
      $mpdf->WriteHTML("</tr>");                       
                       
                   
}
      $mpdf->WriteHTML("</table>");


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Just use a <thead> tag. Outside the page header.

$mpdf->WriteHTML('

<table>
<thead>
    <tr>
        <th>Sl No.</th>
        <th>Name</th> 
    </tr>
<thead>

...');

https://mpdf.github.io/tables/tables.html#repeating-table-header-row-on-new-page


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...