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
/
admin174
/
connected
/
pages
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/admin174/connected/pages/paiement.php
<h1>Liste des paiements</h1> <hr> <?php $stmt=$db_client->prepare("SELECT * FROM paiement ORDER BY created_at DESC"); $stmt->execute(); $rows=$stmt->fetchAll(); ?> <?php if(!empty($rows)): ?> <table class='table table-striped'> <thead> <tr> <th>Numéro de commande</th> <th>Prénom / Nom</th> <th>Email</th> <th>Téléphone</th> <th>>Formation</th> <th>Prix</th> <th>Date</th> </tr> </thead> <tbody> <?php foreach($rows as $row):?> <tr> <td><?=$row->privatekey?></td> <td><?=$row->firstname?> <?=$row->lastname?></td> <td><?=$row->email?></td> <td><?=$row->phone?></td> <td><?=$row->title?></td> <td><?=$row->price?> €</td> <td><?=date("d/m/Y",strtotime($row->created_at))?></td> </tr> <?php endforeach; ?> </tbody> </table> <?php else: ?> <i>Aucun paiement.</i> <?php endif ?>