From a7366a9072d8d41f0aa43a23eb2831eb2f399234 Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Tue, 12 Mar 2024 14:02:22 +0000 Subject: [PATCH] Update file users.php --- html/users.php | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/html/users.php b/html/users.php index 4ea63e12..d95b1c27 100644 --- a/html/users.php +++ b/html/users.php @@ -81,16 +81,14 @@ if(isset($_POST['userid']) && isset($_POST['role']) && isset($_POST['accreditati if ($resultat) { foreach($resultat as $row) { - $user_pp = $row['profile_picture'] == NULL ? "https://abs.twimg.com/sticky/default_profile_images/default_profile_400x400.png" : $row['profile_picture']; - echo "
Nom : " . $row['display_name'] . "
login : " . $row['username'] . "
Email : " . $row['email'] . "
" foreach($classifications as $id => $nom) { if($row['accreditation'] == $id) { echo ''; @@ -98,7 +96,20 @@ if(isset($_POST['userid']) && isset($_POST['role']) && isset($_POST['accreditati echo ''; } } + echo ""; + echo "
"; + echo ""; + echo ""; + echo "
@" . $resultat[0]['username'] . "
"; + echo ""; } } ?>