• I cannot get DOMPDF to generate PDF.

    I have put DOMPDF files into ‘themedir/dompdf/’

    require_once(echo get_template_directory_uri()."/dompdf/dompdf_config.inc.php");
    
    $html =
      '<html><body>'.
      '<p>Put your html here, or generate it with your favourite '.
      'templating system.</p>'.
      '</body></html>';
    
    $dompdf = new DOMPDF();
    $dompdf->load_html($html);
    $dompdf->render();
    $dompdf->stream("sample.pdf");

    Any ideas? Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘DOMPDF doesn't work’ is closed to new replies.