TCPDF
TCPDF copied to clipboard
Generate output pdf in a new tab
When use the command
$pdf->Output($filename, 'I');
The pdf always opens in the same tab. Need an option to open it in a new tab or window.
Please take a look at this thing I googled which states, "There is no way to force a user's browser to open a PDF file in a new tab." Opening a new tab to read a PDF file Seems like including your new
$href = $pdf->Output($filename, 'F');
in an HTML link with a "_blank" target might be your best, but not foolproof, option.