ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/litsolide.com/cp-admin/ |
Upload File : |
<?php
include_once('includes/header.php');
?>
<div class="container">
<div class="row">
<div class="span12">
<div class="page-header">
<h1>Gérer vos Pages aide
<div class="pull-right">
<a href="volet_add.php" class="btn btn-primary" id="form"><i class="icon-plus"></i> Ajouter Page(s)</a>
</div>
</h1>
</div>
</div>
</div>
<table id="sortlist" class="table table-bordered table-striped">
<thead>
<tr>
<th class="span2 center">Page</th>
<th class="span1 center">Opérations</th>
</tr>
</thead>
<tbody>
<?php
$requete = $bdd->query("SELECT * FROM " . $GLOBALS['db_table']['volet'] . " ORDER BY id_volet");
if ($row = $requete->fetch()) {
do {
?>
<tr class="" id="" style="">
<td class="span1 font12 center">
<?php
echo '<b>' . stripcslashes($row['id_volet']) . '</b>';
?>
</td>
<td class="span1 center" style="">
<?php
echo '<b>' . stripcslashes($row['page']) . '</b>';
?>
</td>
<td class="span1 center" style="width: 71px;">
<a href="./volet_edit.php?id_volet=<?php echo $row['id_volet']; ?>">
<img src="assets/img/edit.png" title="Editer la page" />
</a>
</td>
</tr>
<?php
}while ($row = $requete->fetch());
} else {
echo 'Aucune page à afficher !!!';
}
?>
</tbody>
</table>
</div>
<?
include_once('includes/footer.php');
?>