mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:33 +01:00
11 lines
185 B
PHP
Executable File
11 lines
185 B
PHP
Executable File
<?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();
|
|
?>
|