我最近开始使用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;
将结果与某个空格分开的任何解决方案?