Ver Mensaje Individual
  #8 (permalink)  
Antiguo 25/01/2011, 12:41
elizaabeeth
 
Fecha de Ingreso: octubre-2010
Mensajes: 20
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: Php a pdf - error?

Warning: Cannot modify header information - headers already sent by (output started at E:\practica\certificados\certificado3(1).php:2) in E:\practica\certificados\fpdf\fpdf.php on line 1017
FPDF error: Some data has already been output, can't send PDF file


__________________________________________________ ________________________


<?php
require('fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Este es un ejemplo de creación de un documento PDF con PHP');
$pdf->Cell(40,10, 'LUCIA X. MULET MARTINEZ, JEFE DE PERSONAL DEL DEPARTAMENTO ADMINISTRACION DE DEDUCACION MUNICIPAL, CERTIFICA QUE:<br><br> DON (A)');
$pdf->Cell(40,10, $_REQUEST['txtTrabajador']);
$pdf->Cell(40,10,'Rut Nº ');
$pdf->Cell(40,10,$_REQUEST['txtRutTrabajador']);
$pdf->Cell(40,10,'DESEMPEÑA FUNCIONES DE');
$pdf->Cell(40,10, $_REQUEST['txtFuncion']);
$pdf->Cell(40,10,', EN EL');
$pdf->Cell(40,10, $_REQUEST['txtLiceo']);
$pdf->Cell(40,10,', A CONTAR DEL ');
$pdf->Cell(40,10, $_REQUEST['txtFecha']);
$pdf->Cell(40,10,' Y EN FORMA INDEFINIDA.');
$pdf->Cell(40,10,'SE EXTIENDE EL PRESENTE CERTIFICADO A PETICION DEL INTERESADO, PARA LOS FINES QUE SE ESTIME CONVENIENTES SIN ULTERIOR RESPONSABILIDAD DE ESTA SECCION.');
$pdf-> Cell(40,10,'En Vallenar,');
$pdf->Cell(40,10,$_REQUEST['txtFechaActual']);
$pdf->Output();
?>