1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?php
require('FPDF.php');
?>
<?php
Class PDF extends FPDF
{
function Header()
{
//Titre
$this->SetFont('Arial','',18);
$this->Cell(0,6,'Feuille des clients',0,1,'C');
$this->Ln(10);
}
}
$base = mysql_connect('localhost', 'root', '');
mysql_select_db('ume', $base);
mysql_set_charset('utf8');
$PDF=new FPDF();
$PDF->AddPage();
$PDF->SetFont("Arial","B",16);
$PDF->Cell(40,10,"Hello World !");
//Affichage des informations de la base de données
$PDF->Table("Select * FROM ouverture order by nom");
$PDF->Output();
?> |
Partager