24mpdf

Solutions on MaxInterview for 24mpdf by the best coders in the world

showing results for - " 24mpdf"
Warren
17 Sep 2018
1<?php
2$mpdf = new \Mpdf\Mpdf();
3$mpdf->WriteHTML('Hello World');
4
5// Saves file on the server as 'filename.pdf'
6$mpdf->Output('filename.pdf', \Mpdf\Output\Destination::FILE);
7
8