Hi moshthepitt,
By referring here, I can use
$pdf->Cell(0,0,'Text',0,1); //alignment is omitted
To insert any text to the invoice.
I intend to insert a note after the total value of the purchase so I edited dukapress.php and insert these codes starting at line 1785
$pdf->Ln();
$pdf->SetFont('Arial', '', 9);
$pdf->Cell(0, 0, 'Note:', 0, 1, 'L');
$pdf->Cell(0, 0, 'Please email me', 0, 1, 'L');
$pdf->Cell(0, 0, '1 - Ref no.', 0, 1,'L');
$pdf->Cell(0, 0, '2 - Invoice no.', 0, 1, 'L');
$pdf->Cell(0, 0, '3 - Date and time hh:mm:ss', 0, 1, 'L');
$pdf->Cell(0, 0, '4 - Value.', 0, 1, 'L');
with the hope of getting the text will be printed line by line but what I got is that all the text is printed on the same line (left feed but no carriage return).
I would like to use MultiCell() but I don't know the format
Here's the cutout image from the pdf invoice. Please ignore the text as it is in Malay.
I've tried omitting the alignment parameter but to no avail.