How to create a PDF file with PHP?

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

Hi guys

I am working with my new project. I want to generate a new pdf file with the help of PHP code.

How can i do this? Do you any have any ideas?

thanks


You can try free libraries like fPdf

FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.


从Zend Framework看Zend_PDF - 它允许你创建/操作PDF。


Use Zend_PDF I guess.

Check the documentation here: http://framework.zend.com/manual/en/zend.pdf.html

It's the best PDF generator for PHP IMO.

链接地址: http://www.djcxy.com/p/15570.html

上一篇: 使用PHP从纯文本和HTML文本混合创建PDF

下一篇: 如何使用PHP创建PDF文件?