• This project
    • Loading...
  • Sign in

Alvaro Santillan / turnos_online

Logo codes
Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • turnos_online
  • fpdf
  • tutorial
  • tuto1.php
  • primera comitiada · 71feba92
    71feba92 Browse Files
    Alvaro Santillan authored 2021-08-03 01:39:58 +0000
tuto1.php 152 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
<?php
require('../fpdf.php');

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