vote up 3 vote down star
2

How can I make a PDF file in PHP. What I want to make is a student list. So I want to query the database, get the information and give it to the user as a PDF when he clicks generate student list.

flag

5 Answers

vote up 8 vote down

You have two good options first is the standard php library for manipulating pdf's: http://us2.php.net/pdf

Or you can use http://www.fpdf.org/. I would recommend the second.

Other options include: www.pdflib.com

link|flag
Another recommendation for fpdf. Had performed well for us, even under heavy loads. – Mainegreen Feb 13 at 19:09
Fpdf works really well. +1 – Patjoh Apr 20 at 6:48
vote up 1 vote down

PEAR has the PEAR::File_PDF package.

link|flag
vote up 1 vote down

There are are already many libraries available with PHP bindings. One that comes to mind is PDFLib (www.pdflib.com). If I am not mistaken there should even be a lite version that you can use for free. But just check it out.

Hope it helps

link|flag
vote up 1 vote down

I use the ezPDF class. Lightweight, simple, easy to use, and handles most cases.

link|flag
vote up 0 vote down

FPDF is a classical in the field. It seems it has limitations when handling Unicode (eg. Asian char sets), so there are libraries extending it (UFPDF, TCPDF...).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.