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