blob: 7f52beaaff3c88a1a8ba32da12f7848b2b3cdddb (
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
|
<?php
function traiter_formulaire_cequetuveux_aussi()
{
echo "coucou\n";
}
function generate_html_reunion_commentaires($idR)
{
$requete = "SELECT * FROM Repondre WHERE idP != '".$_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>';
}
}
}
function generate_html_reunion_fichiers($idR)
{
$requete = "SELECT * FROM Repondre WHERE idP != '".$_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>';
}
?>
|