Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.volley92.asso.fr
/
htdocs
/
modules
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/modules/slider.php
<?php if($modules['carousel']){ $state = 1; $stmt=$db_client->prepare("SELECT * FROM slider WHERE state = ? ORDER BY created_at ASC"); // on prépare notre requête $stmt->execute(array($state)); $rows=$stmt->fetchAll(); } ?> <div class="owl-slider owl-carousel owl-theme"> <?php foreach($rows as $row):?> <div class="item"> <?php if(empty($row->image)): ?> <div class="slider-img" style="background-image: url('../img/default-image.jpg');"></div> <?php else: ?> <div class="slider-img" style="background-image: url(<?= $row->image ?>);"></div> <?php endif; ?> <div class="bgblack"></div> <div class="owl-title"> <div class="owl-inner-title animated fadeInDown text-center"> <?php if(!empty($row->title_h1)): ?> <h1><?= $row->title_h1 ?></h1> <div class="divider"></div> <?php endif; ?> <?php if(!empty($row->title_h2)): ?> <h2><?= $row->title_h2 ?></h2> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div>