Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/01/2016, 11:23
morocho1979
 
Fecha de Ingreso: agosto-2012
Ubicación: Caracas
Mensajes: 14
Antigüedad: 11 años, 9 meses
Puntos: 0
Respuesta: Array Codeigniter FPDF

No en si quiero reemplazar este codigo

Código PHP:
  $this->pdf->Cell(40,5,'CONTACTO','B',0,'C','1');
            
$this->pdf->Cell(45,5,'CARGO','B',0,'C','1');
            
$this->pdf->Cell(40,5,'FONO DIRECTO','B',0,'C','1');
            
$this->pdf->Cell(40,5,'FONO CENTRAL','B',0,'C','1');
            
$this->pdf->Cell(40,5,'CELULAR','B',0,'C','1');
            
$this->pdf->Cell(80,5,'EMAIL','B',0,'C','1'); 
Usando este pero no me funciona

Código PHP:
                        $pdf->SetFillColor(210,210,210); //linea gris
            
$pdf->SetTextColor(0,0,0); //texto negro
                       
$header = array('contacto' => 'CONTACTO','cargo' => 'CARGO','tlf' => 'FONO','telf_dirc' => 'FONO DIRECTO');
            
$pdf->SetWidths(array(30,40,30,80));
            
$pdf->SetAligns(array('C','C','C','L')); //para las celdas de la tabla

for($l=0;$l<count($header);$l++)
                
$pdf->Cell($pdf->widths[$l],5,$header[$l],1,0,'C',true);