mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
define('FPDF_FONTPATH','../font/');
|
|
require('../fpdf.php');
|
|
|
|
$pdf=new FPDF();
|
|
$pdf->AddPage();
|
|
$pdf->SetFont('Arial','B',16);
|
|
$pdf->Cell(40,10,'Hello World!');
|
|
$pdf->Output();
|
|
?>
|