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/page-single.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 page_list WHERE category_id= ?"); // on prépare notre requête $stmt->execute(array($id)); $row=$stmt->fetch(); if(empty($row)){ header("Location: accueil"); } ?> <div class="bg" <?php if($row->image): ?> style="background-image: url(<?=$row->image?>)" <?php endif ?>> <h1><?=$row->title?></h1> </div> <section class="one"> <div class="container"> <div class="main-content"> <div class="text-justify"> <?= strip_tags($row->content, '<img><p><ul><li><a><br><h3><h2><table><thead><tbody><tfooter><td><tr><th><div><hr><iframe><embed><strong><b><span>'); ?> </div> </div> </div> </section> <?php end_block(); ?>