1
I have a page in HTML and PHP where shows me all the data of certain companies. What I want to do now is create a button where a PDF is created with only the information missing from that company.
I want to create in PDF because I think it gets a little more presentable.
My question is this: With PHP you can create a PDF?
Yes, it can. There are classes that do this very well, like
DOMPDF
. I use DOMPDF in Laravel 4 and, in my opinion, is a great resource!– Wallace Maxters
Another useful tool: http://www.fpdf.org/
– MarceloBoni
Related: export an html/php page to pdf
– rray
Yes, with PHP you can create a PDF.
– Jorge B.
Whether created by PHP or Software what I really want is to be able to organize the PDF the way I want. Because each company that I will insert will be different from each other because one may be missing 10 other documents missing only one.
– ChrisAdler