arie wira kusuma baru 8876a6247d feat: 🔥 cetak laporan, cetak sertifikat, dashboard operator
cetak laporan ada 2 versi, cetak sertifikat dengan background gambar, dashboard untuk operator
2025-03-06 03:08:42 +08:00

10 lines
160 B
PHP
Executable File

<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>