Save pdf files in folder using TCPDF
$pdf->Output()
takes a second parameter $dest, which accepts a single character. The default, $dest='I' opens the PDF in the browser.Use F to save to file
$pdf->Output('/path/to/file.pdf', 'F')
$pdf->Output()
takes a second parameter $dest, which accepts a single character. The default, $dest='I' opens the PDF in the browser.$pdf->Output('/path/to/file.pdf', 'F')