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é.'); }