• February 11, 2023

    the steps to install FPDF:

    1. Download the latest version of FPDF from the official website: http://www.fpdf.org/
      เลือกล่าสุด ไม่ต้องไปดูเวอร์ชั่นด้านบนที่เป็นเฉพาะภาษา
    2. Extract the downloaded archive to a directory on your server.
      ดาวน์โหลด แล้วสร้างโฟลเดอร์ใน โฮสต์เว็บของเรา ตัวอย่าง ให้อยู่ที่ root ก็ได้
    3. In your PHP script, include the fpdf.php file like this: require_once('fpdf/fpdf.php');
      คำสั่งในการใช้ และ สังเกต url path ตัวอย่างนี้จะวางไฟล์ที่จะพิมพ์ pdf ที่ root แล้วเรียด fpdf.php ใน directory
    4. You can then use the FPDF class to create a PDF document.

    Here’s an example of how to use FPDF to create a simple PDF document:

    ตัวอย่างโค๊ดพิมพ์ pdf, เอาไปวางที่ root แล้วเรียกไฟล์นี้มันจะ Gen หน้า pdf ขึ้นมา
    <?php
    require_once('fpdf/fpdf.php');
    
    $pdf = new FPDF();
    $pdf->AddPage();
    $pdf->SetFont('Arial','B',16);
    $pdf->Cell(40,10,'Hello, World!');
    $pdf->Output();
    ?>
    


เวอไนน์ไอคอร์ส

ประหยัดเวลากว่า 100 เท่า!






เวอไนน์เว็บไซต์⚡️
สร้างเว็บไซต์ ดูแลเว็บไซต์

Categories


Uncategorized