Welcome Guest, Not a member yet? Register   Sign In
FPDF
#6

(09-10-2020, 02:45 AM)pws Wrote: hello @niklas
can you send me full code example how use fpdf?
i need it to my website

Hello @pws
Copy fpdf library into ThridParty folder of your app.

in file app/Config/Autoload.php

PHP Code:
$classmap = [
 
  'FPDF' => APPPATH 'ThirdParty/fpdf182/fpdf.php',
]; 


in file app/Controllers/Test.php

PHP Code:
<?php namespace App\Controllers;

use 
CodeIgniter\Controller;

class 
Test extends Controller {
    public function fpdf() {
        $pdf = new \FPDF();
        $pdf->AddPage();
        $pdf->SetFont('Arial','B',16);
        $pdf->Cell(40,10,'Hello World!');
        
        $this
->response->setHeader('Content-Type''application/pdf');
        $pdf->Output();
    }

Reply


Messages In This Thread
FPDF - by niklas - 05-12-2020, 05:20 AM
RE: FPDF - by vitnibel - 05-12-2020, 09:26 AM
RE: FPDF - by niklas - 05-14-2020, 12:32 AM
RE: FPDF - by pws - 09-10-2020, 02:45 AM
RE: FPDF - by vitnibel - 09-11-2020, 08:10 PM
RE: FPDF - by stepgr - 09-19-2020, 02:33 AM
RE: FPDF - by pws - 09-11-2020, 10:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB