gsbvisite/vues/v_ficheUtilisateur.php
2022-03-24 09:24:49 +01:00

80 lines
2.3 KiB
PHP

<?php
/**
*auteur : Hadrien Rommel, lycée le castel à
*dernière modif : 17/03/2022**/
echo("
<div>
<fieldset><legend>Coordonnées de l'utilisateur<a href='index.php?choixTraitement=utilisateur&action=modifier'><img src='images/modif.gif' title='modifier'></a></legend>
<table>");
//modif dans la balise legend
echo("<tr> <th style='width:20px;text-align:center;'>Nom</th>
<td>".$lesInfosUtilisateur['uNom']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Prenom</th>
<td>".$lesInfosUtilisateur['uPrenom']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Adresse</th>
<td>".$lesInfosUtilisateur['uAdresse']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Code Postal</th>
<td>".$lesInfosUtilisateur['uCP']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Ville</th>
<td>".$lesInfosUtilisateur['uVille']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Statut</th>
<td>".$lesInfosUtilisateur['wStatut']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Nom de compte</th>
<td>".$lesInfosUtilisateur['uLogin']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Region</th>
<td>".$lesInfosUtilisateur['wRegion']."</td></tr>
<tr> <th style='width:20px;text-align:center;'>Secteur</th>
<td>".$lesInfosUtilisateur['wSecteur']."</td></tr>
</table>
</fieldset>
<fieldset><legend>Laboratoire</legend>
<table style='border: 0px solid white;'>
<tr>
<td><tr>
<td>".$lesInfosUtilisateur['lNom']."</td></tr> </td>
</tr>
</table>
</fieldset>
");
/*================================================================================================== */
echo("
<fieldset><legend>Praticien visite</legend>
<table>");
echo("<tr>
<th style='width:20px;text-align:center;'>Nom et Prenom du praticien</th>
<th style='width:20px;text-align:center;'>Nombre de visites</th>
</tr>");
foreach ($lesInfosUtilisateurVisite as $uneLigne)
{
//probleme
echo("<tr>
<td>".$uneLigne['pNom']." ".$uneLigne['pPrenom']."</td>
<td>".$uneLigne['COUNT(vNum)']."</td>
</tr>
");
}
echo('</table>
</fieldset> ');
echo ('</div>');