~rmwenyekheri/sarisiae/trunk

« back to all changes in this revision

Viewing changes to admissions/NominallRoll/_fpdf/tutorial/tuto1.php

  • Committer: NDIMBOJr
  • Date: 2015-08-13 10:09:13 UTC
  • Revision ID: rmwenyekheri@gmail.com-20150813100913-wa5o4k7vvarmzl4n
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
require('../fpdf.php');
 
3
 
 
4
$pdf=new FPDF();
 
5
$pdf->AddPage();
 
6
$pdf->SetFont('Arial','B',16);
 
7
$pdf->Cell(40,10,'Hello World!');
 
8
$pdf->Output();
 
9
?>