mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
11 lines
185 B
PHP
11 lines
185 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();
|
||
|
?>
|