Diferencia entre revisiones de «Crear un Reporte usando FPDF»
De KumbiaPHP Framework Wiki
Línea 2: | Línea 2: | ||
<source lang='php'> | <source lang='php'> | ||
− | class PdfController extends | + | class PdfController extends AppController{ |
public function reporte (){ | public function reporte (){ | ||
− | + | View::template(NULL); | |
$this->texto = 'Hola Mundo'; | $this->texto = 'Hola Mundo'; | ||
} | } |
Revisión actual del 21:07 14 feb 2012
- pdf_controller.php
class PdfController extends AppController{
public function reporte (){
View::template(NULL);
$this->texto = 'Hola Mundo';
}
}
- reporte.phtml
<?php
Load::lib('fpdf');
$pdf=new FPDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Arial','B',20);
$pdf->SetXY(0,20);
$pdf->Cell(209,18,$texto,0,0,'C');
$pdf->Output();
?>