How to make a pdf file using PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:44:42Z http://stackoverflow.com/feeds/question/547216 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php 3 How to make a pdf file using PHP John 2009-02-13T18:59:50Z 2009-04-20T16:52:48Z <p>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. </p> http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/547221#547221 1 Answer by Kevin Loney for How to make a pdf file using PHP Kevin Loney 2009-02-13T19:01:51Z 2009-02-13T19:01:51Z <p>PEAR has the <a href="http://pear.php.net/package/File_PDF" rel="nofollow">PEAR::File_PDF</a> package.</p> http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/547228#547228 1 Answer by bartkevelham for How to make a pdf file using PHP bartkevelham 2009-02-13T19:04:19Z 2009-02-13T19:04:19Z <p>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.</p> <p>Hope it helps</p> http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/547229#547229 8 Answer by jtyost2 for How to make a pdf file using PHP jtyost2 2009-02-13T19:04:25Z 2009-02-13T19:04:25Z <p>You have two good options first is the standard php library for manipulating pdf's: <a href="http://us2.php.net/pdf" rel="nofollow">http://us2.php.net/pdf</a></p> <p>Or you can use <a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a>. I would recommend the second.</p> <p>Other options include: <a href="http://www.pdflib.com" rel="nofollow">www.pdflib.com</a></p> http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/547233#547233 1 Answer by mabwi for How to make a pdf file using PHP mabwi 2009-02-13T19:05:03Z 2009-02-13T19:05:03Z <p>I use the <a href="http://www.ros.co.nz/pdf/" rel="nofollow">ezPDF</a> class. Lightweight, simple, easy to use, and handles most cases.</p> http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/769153#769153 0 Answer by PhiLho for How to make a pdf file using PHP PhiLho 2009-04-20T16:52:48Z 2009-04-20T16:52:48Z <p><a href="http://www.fpdf.org/" rel="nofollow" title="FPDF">FPDF</a> is a classical in the field. It seems it has limitations when handling Unicode (eg. Asian char sets), so there are libraries extending it (<a href="http://acko.net/blog/ufpdf" rel="nofollow" title="UFPDF">UFPDF</a>, <a href="http://www.tecnick.com/public/code/cp%5Fdpage.php?aiocp%5Fdp=tcpdf" rel="nofollow" title="TCPDF">TCPDF</a>...).</p>