View Single Post
Old 11-25-2012, 07:18 PM   PM User | #2
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,741
Thanks: 4
Thanked 2,465 Times in 2,434 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Use wordwrap and explode:
PHP Code:
$wrapped wordwrap($description68PHP_EOLtrue);
$aLines explode(PHP_EOL$wrapped);
$iLines count($aLines);
$increase 5;
for (
$i 0$j 25$i $iLines; ++$i$j += $increase)
{
    
$pdf->writeHTMLCell(1395$j125$aLines[$i], ''11true'L'true);

Fou-Lu is offline   Reply With Quote