-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
20 lines (16 loc) · 875 Bytes
/
index.php
File metadata and controls
20 lines (16 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php include 'includes/header.php';?>
<h2 id="lastNews">Les dernières actualités</h2>
<div id="mesArticles" >
<?php
include 'connexion.php';
foreach ($result as $article) {
?>
<div id="idArticle" class="box" data-id="<?=$article["id"]?>">
<div id="titreArticle" class="box"><h3><a classe="lienArt" href="article.php?id=<?= $article['id'] ?>"> <?=$article["titre"]?></a></h3></div>
<div id="contenuArticle" class="box"><a classe="lienArt" href="article.php?id=<?= $article['id'] ?>"> <?=$article["contenu"]?></a></div>
</div>
<?php
}
?>
</div>
<?php include 'includes/footer.php';?>