PDF or Portable Document Format is a popular file type that is often used for online documents. It's great for distributing downloadable written content, and is frequently used by governments and businesses alike. Because it's a format that's familiar to all, many applications allow the user to convert other document types to the PDF format. PHP is one programming language that has a built-in ability to convert to PDF. PHP scripts can be used to transform file types such as HTML into PDF files.
closed as off topic by Mark Trapp, gnat, Walter, Matthieu, Yannis Rizos♦ Sep 4 '12 at 6:23
Questions on Programmers Stack Exchange are expected to relate to software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Try dompdf, it looks like what you need:
Also, one of the answers for This Stack Overflow question suggests wkhtmltopdf:
So your PHP code could call it. However, has some problems:
Or you could combine html2ps (HTML to PostScript) and ps2pdf (PostScript to PDF). |
|||
|
|