-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageForms.php
63 lines (50 loc) · 1.94 KB
/
pageForms.php
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
<?php
include "session.php";
include "header.php";
include "sqlconnexion.php";
include "formsHtml.php";
$questionnaires = $bdd->prepare('SELECT id, titre,description,question, lesoptions,date FROM questionnaire GROUP BY id DESC LIMIT 0,7 ');
$questionnaires->execute();
$donnee = $questionnaires->fetchAll();
foreach($donnee as $key => $donnees){
if (htmlspecialchars($donnees['titre']) == "")
{
$donnees['titre'] = "Formulaire sans titre";
}
echo '<a href="pageAfficherForm.php?id='.$donnees['id'].'" class="enleverAnimation" ><div class="formFinal" >
<span><b>'. htmlspecialchars($donnees['titre']) .'</b></span><br/>
<span><img class="imgForm" src="images/iconeFormGoogle.jpg"> Créé le ' . htmlspecialchars($donnees['date']) . '</span>'.
'</div></a>';
}
?>
</div>
</div><br/>
<div id ="formRecent">
<p><b>Voir les résultats </b></p>
<div class="row">
<?php
foreach($donnee as $key => $donnees){
if (htmlspecialchars($donnees['titre']) == "")
$donnees['titre'] = "Formulaire sans titre";
echo '<a href="pageAfficherReponse.php?id='.$donnees['id'].'" class="enleverAnimation" ><div class="formFinal" >
<span><b>'. htmlspecialchars($donnees['titre']) .'</b></span><br/>
<span><img class="imgForm" src="images/iconeFormGoogle.jpg"> Créé le ' . htmlspecialchars($donnees['date']) . '</span>
</div></a>';
}
?>
</div>
</div>
</div>
<script>
//enléve l'animation du lien
let supprAnim = document.getElementsByClassName("enleverAnimation");
for(const suppr of supprAnim){
suppr.style.color = "black";
suppr.onmouseover = function () {
suppr.style.textDecoration = "none";
}
}
</script>
<?php
include "footer.html";
?>