Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/12/2014, 15:28
slygerry
 
Fecha de Ingreso: diciembre-2014
Mensajes: 4
Antigüedad: 10 años
Puntos: 0
Exclamación Respuesta: Problema con pdf, dompdf

ok andres lo hice de la siguiente manera tratando de simplificar un poco y al parecer ahora si obtiene los datos del id correctamente pero con un error:

Código PHP:
<?php include "../../dompdf/dompdf_config.inc.php" ?>
<?php 
include "php/config.inc" ?>
<?php

       $id 
$_GET['id'];

       echo
$id;


$pdf file_get_contents("producto.php?id=$id");
    
$dompdf=new DOMPDF ();
$dompdf-> load_html($pdf);
ini_set("memory_limit","32M");
$dompdf -> render();
$dompdf-> stream("cotizacion.pdf");
?>

error:
Warning: file_get_contents(producto.php?id=2): failed to open stream: Result too large in C:\xampp\htdocs\login\tiendaonline\dompdf.php on line 10

Fatal error: Uncaught exception 'DOMPDF_Exception' with message 'Requested HTML document contains no data.' in C:\xampp\htdocs\dompdf\include\frame_tree.cls.php: 122 Stack trace: #0 C:\xampp\htdocs\dompdf\include\dompdf.cls.php(676) : Frame_Tree->build_tree() #1 C:\xampp\htdocs\dompdf\include\dompdf.cls.php(846) : DOMPDF->_process_html() #2 C:\xampp\htdocs\login\tiendaonline\dompdf.php(15): DOMPDF->render() #3 {main} thrown in C:\xampp\htdocs\dompdf\include\frame_tree.cls.php on line 122