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/beach-volley.php
<?php //start_block('title','keywords','description') start_block('','',''); ?> <?php // $temp = strrchr($slug,'-'); // $temp = explode('-', $temp); // $id = $temp[1]; $category = 17; $stmt=$db_client->prepare("SELECT * FROM page_list WHERE category_id= ?"); // on prépare notre requête $stmt->execute(array($category)); $rows=$stmt->fetchAll(); $stmt=$db_client->prepare("SELECT * FROM category WHERE id= ?"); // on prépare notre requête $stmt->execute(array($category)); $rowc=$stmt->fetch(); ?> <div class="bg"> <h1><?= $rowc->title?></h1> </div> <section class="one sportif beach"> <div class="main-content beach"> <div class="container"> <?php foreach($rows as $row):?> <h2><?= $row->snd_title?></h2> <div class="row pt-5"> <div class="col-sm-6 mb-3"> <div class="beach-block"> <?= strip_tags($row->content, '<a><p><ul><li><b><strong>')?> </div> </div> <div class="col-sm-6 mb-3"> <div class="beach-block"> <?= $row->content_2?> </div> </div> <?php if(!empty($row->content_3)): ?> <div class="cart-blue"> <div class="col-sm-12"> <?=$row->content_3 ?> </div> </div> <?php endif ?> <div class="col-sm-6"> <?=$row->content_4 ?> </div> <div class="col-sm-6"> <?=$row->content_5 ?> </div> <?php endforeach; ?> </div> </div> </div> </section> <?php end_block(); ?>