blob: 7267de15281b9ebbd91c69a4651c2a4bb73a45f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<?php
function traiter_formulaire_cequetuveux_aussi()
{
echo "coucou\n";
}
// Modifi�e par Ludo pour les probl�mes de vriables de session et pour d'autres d�tails :
// S'il n'y a pas de commentaire, on affiche le tableau vide
function generate_html_reunion_commentaires($idR)
{
?>
<table cellspacing="0" class="commentaires" summary="Liste des commentaires laiss�s pour les personnes convi�es � cette r�union">
<thead>
<tr>
<th>Commentaires <a href="#">(Editer votre commentaire)</a></th>
</tr>
</thead>
<tbody>
<?php
$idP=$_SESSION['session_idP'];
$idR=addslashes($idR);
$requete = "SELECT idP, commentaireReponse FROM Repondre WHERE idP != '$idP' AND idR = '$idR'";
echo "DEBUG : requete : $requete\n";
$resultat = mysql_query($requete);
if($resultat != false)
{
if(mysql_num_rows($resultat) > 0)
{
while($commentaire = mysql_fetch_array($resultat));
{
if ( isset($_SESSION['session_nomP']) && isset($_SESSION['session_prenomP']) )
{
$nom = $_SESSION['session_nomP'] . $_SESSION['session_prenomP'];
}
else
{
$nom = $commentaire['idP'];
}
echo ' <tr><td>'.$nom." : ".$commentaire['commentaireReponse']."</td></tr>\n";
}
}
}
?>
</tbody>
</table>
<?php
}
function generate_html_reunion_fichiers($idR)
{
$requete = "SELECT * FROM Repondre WHERE idP != '".$_SESSION['session_idP']."' AND idR = '".$idR."'";
$resultat = mysql_query($requete);
if($resultat != false)
{
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)
{
echo '<table cellspacing="0" class="detail_reunion">
<thead>
<tr>
<th>Détails de la réunion </th>
<th> </th>
</tr>
</thead>
<tr>
<td><strong>Objet : </strong></td>
<td>Détails stages NEWI</td>
</tr>
<tr>
<td><strong>Organisateur : </strong></td>
<td>Mme Verdier</td>
</tr>
<tr>
<td><strong>Lieu : </strong></td>
<td>Salle 209 </td>
</tr>
<tr>
<td><strong>Ordre du jour : </strong></td>
<td>Le logement, le séjour, les contacts</td>
</tr>
<tr>
<td><strong>Remarque :</strong></td>
<td>aucune</td>
</tr>
</table>';
}
?>
|