FPDF-PHP pdf生成问题

时间:2014-12-30 08:21:25

标签: php mysql fpdf

我正在尝试使用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 的值为“测试方法1' | '测试方法2' | '测试方法3'等等... 所以输入PDF格式应该是:

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

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

1 个答案:

答案 0 :(得分:1)

在循环中尝试这个,

    $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