diff options
Diffstat (limited to 'appli_3_alpha_old/include/ju.inc.php')
-rw-r--r-- | appli_3_alpha_old/include/ju.inc.php | 123 |
1 files changed, 78 insertions, 45 deletions
diff --git a/appli_3_alpha_old/include/ju.inc.php b/appli_3_alpha_old/include/ju.inc.php index 1a03ca9..7f52bea 100644 --- a/appli_3_alpha_old/include/ju.inc.php +++ b/appli_3_alpha_old/include/ju.inc.php @@ -1,53 +1,87 @@ <?php - function traiter_formulaire_cequetuveux_aussi() - { - echo "coucou\n"; - } +function traiter_formulaire_cequetuveux_aussi() +{ + echo "coucou\n"; +} - function generate_html_reunion_commentaires($idR) +function generate_html_reunion_commentaires($idR) +{ + $requete = "SELECT * FROM Repondre WHERE idP != '".$_SESSION['idP']."' AND idR = '".$idR."'"; + $resultat = mysql_query($requete); + if($resultat != false) { -?> - <table cellspacing="0" class="commentaires"> - <thead> - <tr> - <th>Commentaires <a href="#">(Editer votre commentaire)</a></th> - </tr> - </thead> - <tr> - <td>Ludo : J'ai monté le DC sur lequel sera basé le SNI</td> - </tr> - <tr> - <td>Jérémie : J'ai fais une première ebauche du DC</td> - </tr> - </table> -<?php + if(mysql_num_rows($resultat) > 0) + { + echo '<table cellspacing="0" class="commentaires">'; + echo '<thead>'; + echo '<tr>'; + echo '<th>Commentaires <a href="#">(Editer votre commentaire)</a></th>'; + echo '</tr>'; + echo '</thead>'; + while($commentaire = mysql_fetch_array($resultat)); + { + if(isset($_SESSION["PrenomP"])) + { + $nom = $_SESSION["PrenomP"]; + } + else + { + $nom = $commentaire["idP"]; + } + echo "<tr><td>".$nom." : ".$commentaire["commentaireReponse"]."</td></tr>\n"; + } + echo '</table>'; + } } +} - - function generate_html_reunion_fichiers($idR) +function generate_html_reunion_fichiers($idR) +{ + $requete = "SELECT * FROM Repondre WHERE idP != '".$_SESSION['idP']."' AND idR = '".$idR."'"; + $resultat = mysql_query($requete); + if($resultat != false) { -?> -<table cellspacing="0" class="fichiers"> - <thead> - <tr> - <th>Fichiers attachés <a href="#popfichier" class="pop">(Ajouter un fichier)</a></th> - </tr> - </thead> - <tr> - <td><a href="compte-rendu.txt">compte-rendu.txt</a></td> - </tr> - <tr> - <td><a href="photos-ru.jpg">photos-ru.jpg</a></td> - </tr> -</table> -<?php + if(mysql_num_rows($resultat) > 0) + { + echo '<table cellspacing="0" class="commentaires">'; + echo '<thead>'; + echo '<tr>'; + echo '<th>Commentaires <a href="#">(Editer votre commentaire)</a></th>'; + echo '</tr>'; + echo '</thead>'; + while($commentaire = mysql_fetch_array($resultat)) + { + if(isset($_SESSION["PrenomP"])) + { + $nom = $_SESSION["PrenomP"]; + } + else + { + $nom = $commentaire["idP"]; + } + echo "<tr><td>".$nom." : ".$commentaire["commentaireReponse"]."</td></tr>\n"; + } + echo '</table>'; + } } + echo '<table cellspacing="0" class="fichiers">'; + echo '<thead>'; + echo '<tr>'; + echo '<th>Fichiers attachés <a href="#popfichier" class="pop">(Ajouter un fichier)</a></th>'; + echo '</tr>'; + echo '</thead>'; + echo '<tr>'; + echo '<td><a href="compte-rendu.txt">compte-rendu.txt</a></td>'; + echo '</tr>'; + echo '<tr>'; + echo '<td><a href="photos-ru.jpg">photos-ru.jpg</a></td>'; + echo '</tr>'; + echo '</table>'; +} - - function generate_html_reunion_detail($idR) - { -?> - <table cellspacing="0" class="detail_reunion"> +function generate_html_reunion_detail($idR) +{ + echo '<table cellspacing="0" class="detail_reunion"> <thead> <tr> <th>Détails de la réunion </th> @@ -74,7 +108,6 @@ <td><strong>Remarque :</strong></td> <td>aucune</td> </tr> - </table> -<?php - } + </table>'; +} ?>
\ No newline at end of file |