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/club.php
<?php //start_block('title','keywords','description') start_block('','',''); ?> <?php $temp = strrchr($slug,'-'); $temp = explode('-', $temp); $id = $temp[1]; $stmt=$db_client->prepare("SELECT * FROM club WHERE id=?"); // on prépare notre requête $stmt->execute(array($id)); $rows=$stmt->fetch(); ?> <section class="one club"> <div class="container"> <div class="row"> <div class="col-md-4 club-info"> <h1><?= $rows->title ?></h1> <hr> <div class="club-info-text"> <?=$rows->club_info?><br> <?=$rows->phone?><br> <div class="text-justify"> <hr> <?=$rows->short_desc?> </div> </div> <div class="footer-club"> <a href="<?=$routes['contact']?>" class="btn btn-contact btn-block mb-4">Suggestion</a> </div> </div> <div class="col-md-8 map"> <?=$rows->map?> </div> <div class="col-md-12 other-text"> <?php if(!empty($rows->long_desc)): ?> <?= strip_tags($rows->long_desc, '<p><ul><li><a><br><h3><h2>'); ?> <?php endif;?> </div> </div> </div> </section> <?php end_block(); ?>