Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/07/2009, 15:39
crucifijo
 
Fecha de Ingreso: septiembre-2003
Mensajes: 182
Antigüedad: 20 años, 7 meses
Puntos: 1
Respuesta: Error PDF con PHP

Amigos otra vez dando molestias qaui les pongo el codigo la verdad es es basico de "hola mundo pero sigo teniendo el problema"


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ejemplo Basico PDF</title>
</head>

<body>
<?php
require('/AppServ/www/fpdf.php');

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