FPDF print MultiCell() adjacently

前端 未结 4 1852
刺人心
刺人心 2020-12-05 19:07

I\'ve googled around and found this question very common but I can\'t seem to find a proper and direct answer. I\'m using FPDF and I want to generate tables using MultiCell(

4条回答
  •  情话喂你
    2020-12-05 19:17

    use $pdf->Ln(10); with $pdf->cell();

    Example:

    $pdf->cell(100,10,"your content");
    $pdf->Ln(10);
    

提交回复
热议问题