PHP Classes

File: application/third_party/fpdf/tutorial/tuto1.php

Recommend this page to a friend!
  Classes of harold rita   PHP Thesis Proposal Hub   application/third_party/fpdf/tutorial/tuto1.php   Download  
File: application/third_party/fpdf/tutorial/tuto1.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Thesis Proposal Hub
Store and publish research thesis documents
Author: By
Last change:
Date: 6 years ago
Size: 151 bytes
 

Contents

Class file image Download
<?php
require('../fpdf.php');

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