<h1> ajout d'un chapitre pour la méthode : <?php 
    echo $_SESSION['nomMethode'];
    ?>
 </h1>

<p>
<?php 
    $descriptionMeth = $managerMeth->getDescriptionMethodeParNum($_SESSION['numMethode']);
    echo $descriptionMeth;
    ?>
</p>
<fieldset>
  <legend>Commentaire de l'administrateur :</legend>
<?php 
    $commentaire = $managerMeth->getCommentaireParMethode($_SESSION['numMethode']);
    echo $commentaire;
    ?>
</fieldset>
<br />

<form method="post" action="#">
<fieldset>
  <legend>Ajouter un chapitre</legend>

     <label for="titreChap">Nom du chapitre (max. 50 caractères) :</label><br />
     <input type="text" name="titreChap" value="Titre du chapitre" /><br />
     </br>
     <label for="descriptionChap">Description du chapitre (max. 255 caractères) :</label><br />
     <textarea name="descriptionChap" id="description"></textarea><br />
     </br>