<?php

include "texteditor.php";
include "htmltext.php";
include "pdftext.php";
//Bloc pour HTML (commentez tout le bloc PDF plus bas dans la page pour faire le test en HTML)
/****************************************************************************/
$docHtml = new HTMLText('Document HTML');
$docHtml->addTitle('Section 1', 2);
$docHtml->addParagraph('Paragraphe1');
$docHtml->addParagraph('Paragraphe2');
$docHtml->addParagraph('Paragraphe3');
$docHtml->addTitle('Section 2', 2);
$docHtml->addParagraph('Paragraphe1');
$docHtml->addParagraph('Paragraphe2');
//TODO: il manque une instruction pour faire afficher le HTML, écrivez-la !
/****************************************************************************/
//unset($docHtml);
//Bloc pour PDF (commentez tout le bloc HTML plus haut dans la page pour faire le test en PDF)
/****************************************************************************/
$docPDF = new PDFText('Document PDF');
$docPDF->addTitle('Section 1', 2);
$docPDF->addParagraph('Paragraphe1');
$docPDF->addParagraph('Paragraphe2');
$docPDF->addParagraph('Paragraphe3');
$docPDF->addTitle('Section 2', 2);
$docPDF->addParagraph('Paragraphe1');
$docPDF->addParagraph('Paragraphe2');
////TODO: il manque une instruction pour faire afficher le PDF, écrivez-la !
//
///****************************************************************************/