-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajmat.php
53 lines (37 loc) · 1 KB
/
ajmat.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
<html>
<head> </head>
<body>
<table>
<tr>
<td>Jour</td>
<td>08.10 - 09.40</td>
<td>09.50 - 11.20</td>
<td>11.30 - 13.00</td>
<td>14.20 - 15.50</td>
<td>16.00 - 17.30</td>
</tr>
<tr>
<td>Lundi</td>
<?php
$c=$_GET['class'];
$con=mysqli_connect("localhost","root","","emplois");
$res=mysqli_query($con,"select * from seance where nom_dep='$c' and dat_debut='08.10 - 09.40'");
while($r=mysqli_fetch_assoc($res)){
?>
<td><?php echo $r['nom_matiere']; ?></td>
<?php } mysqli_free_result ($res);
?>
<?php
$res=mysqli_query($con,"select * from seance where nom_dep='$c' and dat_debut='14.20 - 15.50'");
while($r=mysqli_fetch_assoc($res)){
?>
<td><?php echo $r['nom_matiere']; ?></td>
<?php } mysqli_free_result ($res);
?>
<td><?php echo $r['nom_matiere']; ?></td>
<td><?php echo $r['nom_matiere']; ?></td>
</tr>
</table>
</form>
</body>
</html>