schools.php
1.7 KB
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
<h2>Liste écoles participantes</h2>
<?php
require_once ("creds.php");
try {
$link = @mysql_connect(__MYSQL_HOSTNAME__, __MYSQL_USERNAME__, __MYSQL_PASSWORD__);
if (!$link) {
throw new Exception('Impossible de se connecter : ' . mysql_error());
}
if (!mysql_select_db('crep', $link)) {
throw new Exception('Selection de la base de donnees impossible');
}
mysql_query("SET NAMES 'utf8'");
$requete = "SELECT DISTINCT `nom`, `circonscription`, `adresse`, `enseignant` FROM `school` ORDER BY nom ASC";
$resultat = mysql_query($requete);
if (!$resultat) {
throw new Exception('Résultat vide.');
}
mysql_close($link);
?>
<center>
<table class="table table-striped table-responsive table-bordered">
<div class="panel_heading">
<thead>
<tr>
<th>Nom de l'école</th>
<th>Circonscription</th>
<th>Adresse</th>
<?php /*
<th>Enseignant</th>
*/ ?>
</tr>
</thead>
</div >
<tbody>
<?php
while ($row = mysql_fetch_assoc($resultat)) {
echo '<tr>';
echo '<td>';
echo '<p>' . $row['nom'] . '</p>';
echo '</td>';
echo '<td>';
echo '<p>' . $row['circonscription'] . '</p>';
echo '</td>';
echo '<td>';
echo '<p>' . $row['adresse'] . '</p>';
echo '</td>';
// echo '<td>';
// echo '<p>'.$row['enseignant'].'</p>';
// echo '</td>';
echo '</tr>';
}
?>
</tbody>
</table>
</center>
<?php
}
catch(Exception $e) {
?>
<div class="alert alert-danger" role="alert">
Impossible d'afficher la liste des écoles participantes.<br/>
Merci de rééssayer ultérieurement.
</div>
<!--
<?php
echo $e;
?>
-->
<?php
}
?>