Inserting line breaks into PDF

If you are using fpdf, in order to be able to use line breaks you will need to use a multi-line text cell as described here. If you use this, then line breaks in your text should be interpreted and converted correctly. Just a quick example: $pdf->Multicell(0,2,”This is a multi-line text string\nNew line\nNew line”); Here, … Read more