换行符在while循环结束时不起作用

时间:2017-08-09 08:45:04

标签: php fpdf

我最近开始使用FPDF作为将一些数据从sql导出到pdf的解决方案。 这是我尝试显示while循环。唯一的问题是最后的换行符。

$sql = "SELECT * FROM table ORDER BY ID ASC";
$items = mysql_query($sql);
while ($get = mysql_fetch_array($items)):

    $pdf->SetXY (10,130);
    $pdf->SetFontSize(12);
    $txt="<b>Item 1</b>: $get[NAME]";
    $pdf->WriteHTML(utf8_decode($txt));

    $pdf->SetXY (10,135);
    $pdf->SetFontSize(12);
    $txt="<b>Item 2</b>: $get[CITY]";
    $pdf->WriteHTML(utf8_decode($txt));

    $pdf->Ln(30);
endwhile;

将结果与某个空格分开的任何解决方案?

0 个答案:

没有答案