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
/
pages
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/pages/gallery.php
<?php //start_block('title','keywords','description') start_block('','',''); ?> <section class="one"> <div id="gallery" class="container"> <h2>Galerie</h2><hr> <div class="row"> <?php $categorie = "Film de protection"; $rows=$stmt->fetchAll(); ?> <h3>Film de protection</h3><hr> <div class="gal"> <?php if(!empty($rows)): ?> <?php foreach($rows as $row): ?> <a href="#" data-toggle="modal" data-target="#lightbox"> <img src="<?=$row->image?>" class="img-responsive" alt="<?=$row->name?>"> </a> <?php endforeach; ?> <?php endif; ?> </div> </div> <div class="row"> <?php $categorie = "Protection de jantes"; $stmt=$db_client->prepare("SELECT * FROM gallery WHERE categorie LIKE ? ORDER BY update_at DESC"); // on prépare notre requête $stmt->execute(array($categorie)); $rows=$stmt->fetchAll(); ?> <h3>Protection de jantes</h3><hr> <div class="gal"> <?php if(!empty($rows)): ?> <?php foreach($rows as $row): ?> <a href="#" data-toggle="modal" data-target="#lightbox"> <img src="<?=$row->image?>" class="img-responsive" alt="<?=$row->name?>"> </a> <?php endforeach; ?> <?php endif; ?> </div> </div> </div> </section> <?php end_block(); ?>