How to convert a PHP web page to PDF?

html, pdf, php

Solution

You can use MPDF, a PHP library which generates PDF files from UTF-8 encoded HTML. It's under GNU GPL v2 licence.

https://mpdf.github.io/

https://github.com/mpdf/mpdf

Problem

I have a PHP file that generates a report from the database, and I want this page to be converted into a PDF file, so it can be saved and printed. How do I convert a web page to a PDF? Is there any tool available or a PHP script?

Original source

Related problems