标签: php pdf tcpdf
现在我使用TCPDF为每页每个人生成动态付款单。现在,我想使用3,TCPDF每页生成PHP个工资单。请帮助我。
TCPDF
3
PHP
答案 0 :(得分:1)
您需要添加到循环中:
for($x=0; $x<count($records); $x++ ) { if( mod(x,3) == 0 ) pdf->addPage(); //--- do pdf stuff }