1
2
3
4
5
6
7
8
9
10
11
12
13
|
foreach($data as $row)
{
$this->Cell($colWidth[0], 5, $count, 'LR',0,'C',$fill);
$this->Cell($colWidth[1], 5, $row['a'], 'LR',0,'C',$fill);
$this->Cell($colWidth[2], 5, $row['b'], 'LR' ,0,'L',$fill);
//$this->MultiCell($colWidth[2], 5, $row['b'], 'LR', 'C',$fill);
$this->Cell($colWidth[3], 5, $row['c'], 'LR',0,'R',$fill);
$this->Cell($colWidth[4], 5, $row['d'], 'LR',0,'C',$fill);
$this->Ln();
$fill=!$fill;
}
|