我必须通过php.on在fpdf中生成多个页面。我正在使用multicell.that工作正常。之后我在循环中使用单元格。
$GetMultiCellHeight = $pdf->y - $y;
$y = $y + $GetMultiCellHeight;
$pdf->SetXY($x, $y);
$pdf->Cell(30, 10, 'FILE NO', 1, 0, 'C');
$pdf->Cell(80, 10, 'FILE NAME', 1, 0, 'C');
$pdf->Cell(30, 10, 'DATE', 1, 0, 'C');
$pdf->Cell(50, 10, 'TYPE', 1, 0, 'C');
$y = $y + 10;
$pdf->SetXY($x, $y);
while ($rowSubmission_files = oci_fetch_row($parse_Submission_files)) {
$pdf->Cell(30, 10, $rowSubmission_files [1], 1, 0, 'C');
$pdf->Cell(80, 10, $rowSubmission_files [2], 1, 0, 'L');
$pdf->Cell(30, 10, $rowSubmission_files [5], 1, 0, 'C');
$pdf->Cell(50, 10, $rowSubmission_files [6], 1, 0, 'L');
$y = $y + 10;
$pdf->SetXY($x, $y);
}
我的数据库中有两行用于打印文件详细信息。 在生成pdf后,我在新页面中获取每一行。怎么解决这个问题?提前谢谢。