8

Possible Duplicate:
Convert HTML + CSS to PDF with PHP?

I need convert an html + css to pdf. The target is generate an invoice.

Community
  • 1
  • 1
Jarab
  • 131
  • 1
  • 2
  • 6

1 Answers1

-1

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
Yogesh Suthar
  • 30,424
  • 18
  • 72
  • 100