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.
+9
A:
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
jtyost2
2009-02-13 19:04:25
Another recommendation for fpdf. Had performed well for us, even under heavy loads.
Mainegreen
2009-02-13 19:09:19
Fpdf works really well. +1
Patjoh
2009-04-20 06:48:24