i am not able to generate pdf download,my code is as follows,can anyone tell me what is wrong with this code.
include \'tcpdf.php\'; $pdf = new TCPDF(); $pdf
If you want to make the file downloads, use PHP function header before your $pdf->Output(); like this :
header
$pdf->Output();
header('Content-type: application/pdf'); header('Content-Disposition: attachment; filename="file.pdf"'); $pdf->Output(); # terminate your file with TCPDF output
See PHP function header on php.net