Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/09/2003, 11:19
jnick_dc
 
Fecha de Ingreso: julio-2003
Ubicación: Pachuca, Mexico
Mensajes: 5
Antigüedad: 20 años, 9 meses
Puntos: 0
Ayuda en FPDF

Hola a todos, tengo el siguiente codigo :
<?php

define('FPDF_FONTPATH','font/');
require('fpdf.php');

$pdf=new FPDF();
$pdf->Open();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'¡Hola, Mundo!');
$pdf->Output();
?>

al ejecutarlo me manda el siguiente error

Warning: Cannot add header information - headers already sent by (output started at c:/program files/apache group/apache/htdocs/o-i/imprime02.php:7) in fpdf.php on line 998
FPDF error: Some data has already been output to browser, can't send PDF file

Pregunta ¿ Es problema de Configuración... o de Instalación.?

Gracias