Mpdf - групповой разрыв страницы - PullRequest
0 голосов
/ 09 марта 2020

Я пытаюсь сгенерировать pdf групповым разрывом страницы, используя mpdf.

Мой код mpdf

  $content .= '<center><table border="1" cellspacing="0" cellpadding="5">  
       <thead><tr>  
            <th width="5%">ID</th>  
            <th width="40%">Name</th>  
            <th width="20%">Gender</th>  
            <th width="20%">Designation</th>  
            <th width="15%">Age</th>  
       </tr> </thead><tbody> ';

$content = fetch_data(); 
$content .= '</tbody></table><center>';
$mpdf->writeHTML($content);

в функции fetch_data, которую я использовал, пока l oop ...

function fetch_data()  
 {  
      $output = '';  
      $connect = mysqli_connect("localhost", "root", "****", "test");  
      $sql = "SELECT * FROM staff ORDER BY design";  
      $result = mysqli_query($connect, $sql);  
      $i=0;
      while($row = mysqli_fetch_array($result))  
      {       
  $i++;

      $output .= '<tr>  
                          <td>'.$i.'</td>  
                          <td>'.$row["staff_name"].'</td>  
                          <td>'.$row["sex"].'</td>  
                          <td>'.$row["design"].'</td>  
                          <td>'.$row["age"].'</td>  
                     </tr>  
                          ';  


      }  
      return $output;  
 }

Теперь я хочу разрыва страницы на основе Обозначение . Который находится в $row["design"]

...