1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <div class="corps">
<table class="article">
<thead>
<!-- Titre de l'article (en-tête) -->
<tr>
<th> <?php echo $donnees['titre_art']; ?> </th>
</tr>
</thead>
<tfoot>
<tr>
<!-- Lien vers la page de commentaire -->
<th><a href='#' onClick="window.open('commentaire.php?id=<?php echo $donnees['id']-1;?>','_blank','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=800, height=430');return(false)">Ajouter/voir un commentaire</a></th>
</tr>
</tfoot>
<tbody>
<tr>
<!-- contenu de l'article -->
<td><img class="<?php echo $donnees['classe']; ?>" src="<?php echo $donnees['source']; ?>" alt="<?php echo $donnees['description']; ?>" title="<?php echo $donnees['titre_img']; ?>"/>
<p class="black"><?php echo $donnees['texte']; ?></p></td>
</tr>
</tbody>
</table>
</div> |
Partager