kwstephenchan Posted October 19, 2008 Share Posted October 19, 2008 Hi all, I am new to FPDF and the following is a starter FPDF script but it does not work and I have no clue. $pdf=new FPDF(); $pdf->SetTitle('Project Plan'); $pdf->SetFont('Helvetica','B',20); $pdf->SetTextColor(50,60,100); $pdf->AddPage('P'); $pdf->SetDisplayMode(real,'default'); $pdf->SetXY(50,20); $pdf->SetDrawColor(50,50,100); $pdf->Cell(100,10,'Installation Plan',1,0,'C',0); $pdf->SetXY(10,50); $pdf->SetFontSize(10); $pdf->Write(5,'Congradulations! You have generated a PDF. '); $pdf->Output('example1.pdf','I'); When I execute this php, I got error from IE as followiL Internet Explorer cannot download rptproj02.php from localhost. Internet Explorer cannot find site and something like that. What I have done was to download FPDF, extract it and place the FPDF.php in my project directory (including some font file), was there something else that I should do ?? Please help. KW Link to comment https://forums.phpfreaks.com/topic/129087-solved-simple-fpdf-does-not-work/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.