Affichage des commentaires d'un article

This commit is contained in:
Simon Vieille 2017-03-09 16:25:37 +01:00
parent 5ba6723d2e
commit 872dd0402d

View file

@ -119,9 +119,24 @@ $article = $articles[$articleAAfficher];
$commentaires = $article['commentaires'];
foreach ($commentaires as $monCommentaire) {
$nom = $monCommentaire['nom'];
$contenu = $monCommentaire['contenu'];
echo '<div class="commentaire">';
echo '<h3>'.$monCommentaire['nom'].'</h3>';
echo '<p>'.$monCommentaire['contenu'].'</p>';
echo '<h3>'.$nom.'</h3>';
// Façon 1
echo '<p>'.$contenu.'</p>';
// Façon 2
echo "<p>$contenu</p>";
// Façon 3
?>
<p><?php echo $nom; ?></p>
<?php
echo '</div>';
}
?>