how to convert dynamic php file to pdf?
I try to convert dynamic php database file to pdf. I try with DOMPDF, but I have a problem with defining the string. I'll explain: Here is a 'hello world' script for dompdf: require_once("dompdf_config.inc.php"); $html = '<html><body>'. '<p>Hello World!</p>'. '</body></html>'; $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); $dompdf->stream("hello_world.pdf"); The thing is that instead of a simple '<html><body>'. '<p>Hello World!</p>'. '</body></html>' I have a long php file full of functions and sql queries. because of it I have inside it many ",',; e.t.c signs. I also