How to create a pdf file from html5 + css3?

Possible duplicate:
Convert HTML + CSS to PDF using PHP?

I need to convert html + css to pdf. The goal is to create an invoice.

+4
source share
2 answers

After googling html page to pdf in php first link was as follows:

Convert HTML + CSS to PDF using PHP?

Here they advise PrinceXML . Next time be sure to go to Google, as it is not difficult to find.

0
source

use this

http://html2pdf.fr/en/default

 $html = file_get_contents("valid.html"); require_once("html2pdf.class.php"); $html2pdf = new HTML2PDF("P", "A4", "en", array(10, 10, 10, 10)); $html2pdf->setEncoding("ISO-8859-1"); $html2pdf->WriteHTML($html); $html2pdf->Output("pdf/PDF.pdf", "F"); //output to file $html2pdf->Output(); //output to browser 
0
source

All Articles