Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/06/2013, 12:35
Avatar de indie_rok
indie_rok
 
Fecha de Ingreso: mayo-2013
Ubicación: Top of the world.
Mensajes: 85
Antigüedad: 11 años
Puntos: 0
Pregunta Crear PDF apartir de html

Hola!

Estoy usando la libreria DOMPDF

pero cuando me genera el PDF y lo abro me marca error y / o que el pdf esta corrupto.

Alguien me hecha una mano?

Es este codigo

Código PHP:
<?php require("dompdf/dompdf_config.inc.php");

$html='
<html>
<head>
</head>

<body>

Primer PDF Prueba

gogogo

</body>
</html>
'
;

$pdf = new DOMPDF();
$pdf->load_html($html);
$pdf->render();
$pdf->stream("salida.pdf");
 
?>