Files
Ecurie_Web/vue/actualite/index.php
ccunatbrule f44cb8f268 MAJ 1.2
Modification de l'affichage et debuguage du php pour un fonctionnement normal.
2022-07-18 01:23:12 +02:00

20 lines
799 B
PHP

<section id="content" class="page-content">
<div>
<br><h2 class="text-center">Dernières nouvelles</h2><hr>
<ul class="list-unstyled">
<?php foreach($event1 as $event){ ?>
<li class="border border-secondary rounded p-2 m-3 bg-white">
<div class="numbox img-indent3">
<span><?php setlocale (LC_TIME, 'fr_FR.utf-8','fra');echo strftime("%b", strtotime($event['dateevent'])); ?></span>
<strong><?php echo strftime("%#d", strtotime($event['dateevent'])); ?></strong>
</div>
<div class="media-body">
<h4 class="card-title"><?php echo $event['nom']; ?></h4>
<p><?php echo $event['description']; ?></p><br><br>
<!--<p class="blockquote-footer">Posté par Admin <span>46 Commentaire(s)</span></p>-->
</div>
</li>
<?php } ?>
</ul>
</div><hr>
</section>