Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a pdf file using PHP

Tags:

php

pdf

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.


2 Answers

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

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

Other options include: www.pdflib.com

like image 150
Justin Yost Avatar answered Sep 16 '26 10:09

Justin Yost


PEAR has the PEAR::File_PDF package.

like image 37
Kevin Loney Avatar answered Sep 16 '26 09:09

Kevin Loney