I use FPDF to create PDF from PHP, and I have a problem with the Write () function
I use the following code, and I want to backtrack from a text block not only on the first line:
$pdf->SetX(60);
$pdf->Write(5,'' . str_repeat( ' This is a test of setX.', 30 ));
but as you can understand, these are just the indents of the first line, any idea on how to move all the mas text?
source
share