I have a page which uses mPDF which when you run displays a PDF in the browser, it can also be saved from here as a PDF no problem. What I would like to happen is when the p
The mPDF docs state that the first argument of Output() is the file path, second is the saving mode - you need to set it to 'F'.
Output()
'F'
$mpdf->Output('filename.pdf','F');