php - 使用 fpdf 的 pdf 分页符过多

标签 php html mysql fpdf

我想以表格形式显示来自 MySQL 数据库的数据。当数据超过第一页时,下一页正确写入下一行。但是之后的每一行都被写入一个新页面。这意味着第一页看起来不错,但第二页及以后的页面将只包含一行。我怎样才能防止这种情况发生?下面是我的代码:

<?php
require('fpdf17/fpdf.php');
require('db.php');

//create a FPDF object
$pdf=new FPDF();

//set font for the entire document
$pdf->SetFont('Times','B',20); //set font for the whole page (font family, style, size)
$pdf->SetTextColor(0,0,0); //using RGB value

//set up a page
$pdf->AddPage('P');  //potrait orientation
$pdf->SetDisplayMode('default'); //using 100 percent zoom and the viewer's default layout

//insert an image
$icon = "files/icon.png";
$pdf->Cell (10);
$pdf->Cell(60, 60, $pdf->Image($icon, $pdf->GetX(), $pdf->GetY(), 33.78), 0, 0, 'L', false);

$pdf->SetFillColor(0,0,0);
$pdf->SetFont('Times', '', 12);
$pdf->SetXY(10, 30);
$pdf->Cell(10);
$pdf->Cell(30, 6, 'Retrieval Date' , 0, 0, '', 0);
date_default_timezone_set("Asia/Kuala_Lumpur"); //set default time zone
$pdf->Cell(30, 6, ': '.date("d/m/Y"), 0, 2, 'B', 0);

//Set x and y position for the main text, reduce font size and write content
$pdf->SetXY(20,40); //setting the position
$pdf->SetFont('Times', 'BU', 14);
$pdf->Write(12,'Absenteeism record for:');

$fac = addslashes( filter_input( INPUT_GET,'fac',FILTER_SANITIZE_STRING ) );
$data = "SELECT * FROM faculty WHERE fac_code LIKE '$_GET[fac]'";

$result = $conn->query($data) or die("Error: ".mysqli_error($conn));
while($ser=mysqli_fetch_array($result)){

    $fac_name = $ser['fac_name'];
    $pdf->SetFillColor(0,0,0);
    $pdf->SetFont('Times', '', 12);
    $pdf->SetY(50);
    $pdf->Cell(10);
    $pdf->SetX(20);
    $pdf->Cell(30, 6, 'FACULTY' , 0, 0, '', 0);
    $pdf->Cell(30, 6, ': '.$fac.'-'.' '.$fac_name, 0, 2, 'B', 0);
}

//start first table
$pdf->SetFillColor(255,255,255);
$pdf->SetFont('Times', 'B', 12);
$pdf->SetXY(21,58);
$pdf->Cell(10, 6, 'No.', 1, 0, 'L', 1);
$pdf->Cell(25, 6, 'Matric no', 1, 0, 'L', 1);
$pdf->Cell(45, 6, 'Name', 1, 0, 'L', 1);
$pdf->Cell(31, 6, 'Programme', 1, 0, 'L', 1);
$pdf->Cell(20, 6, 'Course', 1, 0, 'L', 1);
$pdf->Cell(35, 6, 'Absenteeism %', 1, 0, 'L', 1);

$row_height = 6;
$y1_axis = 58;
$y1_axis = $y1_axis + $row_height;
$counter = 1;
$fac = addslashes( filter_input( INPUT_GET,'fac',FILTER_SANITIZE_STRING ) );
$data = "
    SELECT
        stud_matric, stud_name, fac_code, fac_name, group_group_code, prog_code, course_course_code,
        getid, SUM(studAtt_endTime - studAtt_startTime)/(course_contacthour_perWeek * 14) AS 'sum'
    FROM studentattendance";



$result = $conn->query($data)  or die("Error: ".mysqli_error($conn));
while($ser=mysqli_fetch_array($result)){

    $fac_name = $ser['fac_name'];
    $stud_matric = $ser['stud_matric'];
    $stud_name = $ser['stud_name'];
    $prog_code = $ser['prog_code'];
    $course_course_code = $ser['course_course_code'];
    $per= $ser['sum'];

    $pdf->SetFont('Times', '', 12);
    $pdf->SetXY(21, $y1_axis);
    $pdf->Cell(10, 6, $counter, 1, 0, 'L', 1);
    $pdf->Cell(25, 6, $stud_matric, 1, 0, 'L', 1);
    $pdf->Cell(45, 6, $stud_name, 1, 0, 'L', 1);
    $pdf->Cell(31, 6, $prog_code, 1, 0, 'L', 1);
    $pdf->Cell(20, 6, $course_course_code, 1, 0, 'L', 1);
    $pdf->Cell(35, 6, $per, 1, 0, 'L', 1);
    $pdf->Ln();

    $y1_axis = $y1_axis + $row_height;
    $counter++;
}
//end first table

//Output the document
$pdf->Output("$fac.pdf",'I'); 
?> 

最佳答案

我怀疑原因是你的 $y1_axis 变得太大了;可能最简单的解决方案是添加到数据库循环的底部:

$y1_axis = $y1_axis + $row_height;
$counter++;
if ($counter % 35 === 0) {
    $pdf->AddPage();
    $y1_axis = 20;
}

并确保在创建 PDF 时使用 $pdf->SetAutoPageBreak(false) 禁用自动分页符。

关于php - 使用 fpdf 的 pdf 分页符过多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34359475/

相关文章:

mysql - 删除并加入

php - 使用下拉菜单编辑 mysql 数据

javascript - Twitter typeahead 要显示的不同值

php - 我如何以传统的 'time' 增量进行 ORDER BY,一个值字符串,ex : "10:00 AM", 来自不是 date() 格式的数据库条目?

html - CSS 背景颜色显示另一种颜色

javascript - W3C验证器: Element head is missing a required instance of child element title

html - 如何在 css 中重新设置 radio 类型的输入样式?

php - 从 MySQL 数据库的序列化数组中的字符串中删除 "%"

php - 小于不在 SQL 查询 PHP 中工作

php - 升级到 php 7 后出现 fsockopen 错误