我正在为客户制作一个小的PDF生成工具。我正在使用TCPDF,因为我们需要在其中使用阿拉伯字体。我从数据库中获取结果。现在客户要求是每页20个结果。我在互联网上搜索了很多。但是我没有发现太多。这是我的代码,请看一下。
$pdf->SetFont('dejavusans', '', 18);
$pdf->Ln(40);
$content = '';
$content .='
<table>
';
$counter=0;
$result = mysqli_query($db,"SELECT * FROM record");
while($row = mysqli_fetch_array($result))
{
$counter++;
$name = $row['rname'];
$country = $row['rcountry'];
$uid = $row['ruid'];
$content .='
<tr>
<td>'.$name.'</td>
<td>'.$country.'</td>
<td>'.$uid.'</td>
</tr>';
}
$content .='</table>';
$pdf->WriteHTML($content, true, 0, true, 0);
我也尝试了以下解决方案,但未显示任何结果 Split Table After X Number of Rows & Add Text in While Loop (Using TCPDF)