From c74df737dfc0c032bb962a9d05bd78dcd2f9178e Mon Sep 17 00:00:00 2001 From: indev Date: Sat, 7 Dec 2024 10:53:14 +0000 Subject: [PATCH] Amelioration interface adhesion non payees --- .gitignore | 2 +- html/admin/adhesions-non-payees.php | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9e6f3658..822898fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ config/ content/ - +.gitignore diff --git a/html/admin/adhesions-non-payees.php b/html/admin/adhesions-non-payees.php index 7bd119c8..e52f308a 100755 --- a/html/admin/adhesions-non-payees.php +++ b/html/admin/adhesions-non-payees.php @@ -141,14 +141,15 @@ if (isset($_POST['adherent-id'])) { $result = $request->fetchAll(PDO::FETCH_ASSOC); if ($result) { - echo ('
'); + echo (''); foreach($result as $row) { - echo ('
'); + echo ("
"); + echo (''); echo (''); - echo ('
' . $row['firstname'] . ' ' . $row['lastname'] . '
' . $row['email'] . '
' . $row['join_date'] . '
Envoyer un rappel
'); - echo (''); + echo (''); + echo (''); } - echo (''); + echo ('
Prénom NomEmailDate demande
' . $row['firstname'] . ' ' . $row['lastname'] . '' . $row['email'] . '' . $row['join_date'] . 'Envoyer un rappel
'); } else { echo ('Aucun utilisateur trouvé.'); }