gpt4 book ai didi

php - FPDF-PHP pdf生成问题

转载 作者:行者123 更新时间:2023-11-29 12:30:00 26 4
gpt4 key购买 nike

我正在尝试使用 fpdf lib 将 MySQL 表中的值打印到 PDF。

以下是代码示例:

$dcr_query="SELECT * FROM `incident_investigation` where ii_reference_no='$ref_num' and ii_company_id='$compny_id'";

$result_1 = mysql_query ($dcr_query) or ErrorHandler (array ('File' => __FILE__,'Line' => __LINE__,'SqlErr' =>mysql_error(),'SqlQry' => $dcr_query));
while($row_apr = mysql_fetch_array($result_1)) {

$method=$row_apr['ii_method'];

$pdf->SetY(50);
$pdf->SetX(35);
$pdf->SetFont('Times','',12);
$pdf->MultiCell(0,5,$method);

}

例如:MySQL 表中的 $method 值是 'test method1' | '测试方法2' | “测试方法3”等...所以 PDF 的输出应该是这样的:

测试方法1
测试方法2
测试方法2

我想要逐行的$method。我该怎么做?

最佳答案

在循环中尝试这个,

    $variable = $row['method']
$pdf->SetY($y_axis);
$pdf->SetX(25);
$pdf->Cell(30, 6, $variable, 1, 0, 'L', 1);

you can use this reference also

关于php - FPDF-PHP pdf生成问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27701883/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com