the steps to install FPDF:
- Download the latest version of FPDF from the official website: http://www.fpdf.org/
เลือกล่าสุด ไม่ต้องไปดูเวอร์ชั่นด้านบนที่เป็นเฉพาะภาษา - Extract the downloaded archive to a directory on your server.
ดาวน์โหลด แล้วสร้างโฟลเดอร์ใน โฮสต์เว็บของเรา ตัวอย่าง ให้อยู่ที่ root ก็ได้ - In your PHP script, include the
fpdf.php
file like this:require_once('fpdf/fpdf.php');
คำสั่งในการใช้ และ สังเกต url path ตัวอย่างนี้จะวางไฟล์ที่จะพิมพ์ pdf ที่ root แล้วเรียด fpdf.php ใน directory - 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(); ?>