diff options
Diffstat (limited to 'beta_accents/app/index.php')
-rw-r--r-- | beta_accents/app/index.php | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/beta_accents/app/index.php b/beta_accents/app/index.php index 572c656..abdfca1 100644 --- a/beta_accents/app/index.php +++ b/beta_accents/app/index.php @@ -1,7 +1,7 @@ <?php require('include/ludo/session_verify.inc.php'); require_once('include/ludo/html_elements.inc.php'); -generate_html_doctype_and_head("Réunions"); +generate_html_doctype_and_head("Réunions"); echo "<body>\n"; generate_html_divs_menu(); ?> @@ -32,7 +32,7 @@ generate_html_div_help(); <br/><br/> <a href="details_reunion.php?action=creer_reunion">Organiser une réunion</a> <br/><br/> - <table class="listeReunions" summary="Liste des réunions vous concernant"> + <table class="listeReunions" summary="Liste des réunions vous concernant"> <tr> <th>Objet</th> <th>Organisateur</th> @@ -41,7 +41,7 @@ generate_html_div_help(); <th>Détails</th> </tr> <?php - // Connexion à la base et sélection de la database + // Connexion à la base et sélection de la database require_once 'include/connect.inc.php'; function fill_array_liste_reunion($query) @@ -53,9 +53,12 @@ generate_html_div_help(); } else { - // On écrit ligne à ligne les personnes et les disponibilités + // On écrit ligne à ligne les personnes et les disponibilités while ( list($idR, $objetR, $nomP, $prenomP, $idC_Fixe, $estAnnulee) = mysql_fetch_array($result) ) { + $objetR=htmlentities($objetR, ENT_QUOTES); + $nomP=htmlentities($nomP, ENT_QUOTES); + $prenomP=htmlentities($prenomP, ENT_QUOTES); // Boucle sur chaque personne echo " <tr>\n"; echo ' <td><a href="details_reunion.php?idR=' . $idR . '">' . "$objetR</a></td>\n"; @@ -66,16 +69,16 @@ generate_html_div_help(); switch($etat) { case 'reunion_fixee': - echo ' <td>' . date('d/m/Y \à H:i', $idC_Fixe) . "</td>\n"; - echo " <td class='$etat'>Fixée</td>\n"; + echo ' <td>' . date('d/m/Y - H:i', $idC_Fixe) . "</td>\n"; + echo " <td class='$etat'>Fixée</td>\n"; break; case 'reunion_en_cours': echo " <td></td>\n"; - echo " <td class='$etat'>En préparation</td>\n"; + echo " <td class='$etat'>En préparation</td>\n"; break; case 'reunion_annulee': echo " <td></td>\n"; - echo " <td class='$etat'>Annulée</td>\n"; + echo " <td class='$etat'>Annulée</td>\n"; break; } @@ -89,7 +92,7 @@ generate_html_div_help(); } - // Réunions fixées et passées + // Réunions fixées et passées $query = 'SELECT DISTINCT R.idR, R.objetR, P.nomP, P.prenomP, UNIX_TIMESTAMP(C.dateHeure), R.estAnnulee' . ' FROM AWOR_Liste L,AWOR_Reunion R,AWOR_Appartenir A,AWOR_Creneau C,AWOR_Personne P' @@ -98,7 +101,7 @@ generate_html_div_help(); . ' ORDER BY C.dateHeure DESC;'; fill_array_liste_reunion($query); - // Réunion en préparation + // Réunion en préparation $query = 'SELECT DISTINCT R.idR, R.objetR, P.nomP, P.prenomP, NULL, R.estAnnulee' . ' FROM AWOR_Liste L,AWOR_Reunion R,AWOR_Appartenir A,AWOR_Personne P' // Creneau C, . " WHERE ((A.idP = $idP AND A.idL = L.idL) OR R.idP_Orga = $idP)" |