I'm not sure what is going on. I specified for the 2nd cell to go to the next line but it is attaching to the end of the first line. Here is my code:

<?php

require_once('/fpdf/fpdf.php');

$pdf = new FPDF();
//var_dump(get_class_methods($pdf));

$pdf->AddPage();


$pdf->SetFont('Arial', 'B', '20');
$pdf->cell(0,10, 'Mobile Home Poperty Tax Clearance Request', 1);

$pdf->SetFont('Arial', 'B', '12');
$pdf->cell(0,10, 'This is a REQUEST. This is NOT a property tax clearance.', 1, 1);

$pdf->SetFont('Arial', '', '12');
$pdf->cell(0,10, 'NOTE: PURSUANT TO ARS 42-19107 AND 42-19155, it is unlawful for any person to knowingly move or sell a mobile home for which applicable property taxes have not been paid. A person violating the provisions of the section is guilty of a class 1 Misdemeanor and is subject to a fine.', 1, 1);


$pdf->Output();

?>

I found the problem. Adding a 1 to the end of line 12 fixed the issue

$pdf->cell(0,10, 'Mobile Home Poperty Tax Clearance Request', 1, 1);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.