How to make a pdf file using PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:44:42Zhttp://stackoverflow.com/feeds/question/547216http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php3How to make a pdf file using PHPJohn2009-02-13T18:59:50Z2009-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#5472211Answer by Kevin Loney for How to make a pdf file using PHPKevin Loney2009-02-13T19:01:51Z2009-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#5472281Answer by bartkevelham for How to make a pdf file using PHPbartkevelham2009-02-13T19:04:19Z2009-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#5472298Answer by jtyost2 for How to make a pdf file using PHPjtyost22009-02-13T19:04:25Z2009-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#5472331Answer by mabwi for How to make a pdf file using PHPmabwi2009-02-13T19:05:03Z2009-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#7691530Answer by PhiLho for How to make a pdf file using PHPPhiLho2009-04-20T16:52:48Z2009-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>