Hola, lo que puedes hacer es:
Código PHP:
Ver original$rows = 0;
for($i=0;$i<sizeof($reg);$i++){ $this->SetFont('Arial','',8);
$this->SetTextColor(3,3,3); // Establece el color del texto (en este caso es negro)
$this->Cell(15,5,$reg[$i]["cod_producto"],1,0,'C');
$rows++;
if ($rows==19) {
$rows = 0;
$this->AddPage();
}
}