我正在尝试输出如下图像“预期输出”列明智,但我当前的输出类似于“输出”字段。在某些方面尝试但未能得到我期待的输出。另一个问题是,我还想根据重复计数列值在2,3 ...时间内重复一次输出。 任何建议都有助于完成工作。提前致谢。
$row_height = 10;
$pdf->SetY(5);
$y_axis = $y_axis + $row_height;
$i = 0;
$max = 22;
$row_height = 10;
while($row = mysql_fetch_array($result) )
{
if ($i == $max)
{
$pdf->AddPage();
//print column titles for the current page
}
$pdf->SetFillColor(255, 255, 255);
$pdf->SetFont('Arial', '', 7);
$pdf->SetY($y_axis+1);
$pdf->Cell(8, 5, $SL, 0, 0, 'C', 1);
$pdf->SetY($y_axis+9);
$pdf->Cell(40, 5, $Style, 0, 0, 'L', 1);
$pdf->SetY($y_axis+15);
$pdf->Cell(50, 5, $Code, 0, 0, 'L', 1);
$y_axis = $y_axis + $row_height;
$i = $i + 1; }
mysql_close($link);
//$Supplier=$row('Supplier');
$pdf->Output($PI_SL.'-'.$CUSTOMER_NAME.'.pdf','I');