Iām using FPDF with PHP to generate reports. When the text is too long, it overflows. How can I stop this?
$string = "IT IS TOO LONG IT IS TOO LONG IT IS TOO LONG IT IS TOO LONG IT IS TOO LONG IT IS TOO LONG";
$pdf->Cell(190,10,'Observations: '.$string.'',0,0,'C');