Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. require_once("dompdf/dompdf_config.inc.php");
  2.  
  3. $Test='<html>
  4. <head>
  5.  
  6. <title>Insert title here</title>
  7. </head>
  8. <body>
  9. Sample Text
  10. </body>
  11. </html>';
  12. $dompdf = new DOMPDF();
  13. $dompdf->load_html($Test);
  14. $dompdf->render();
  15. $dompdf->stream("test.pdf");
  16. echo $dompdf;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement