network.php
1.67 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
<?php
require_once("accesBase.php");
$capteurs = getSensors();
$raspberrys = getRaspberrys();
$nombre = count($raspberrys);
?>
<div class="row">
<div class="col-6 col-md-6 offset-md-3 offset-3">
<br/>
<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-project-diagram"></i> Le réseau</h1>
<img src="img/computer.jpg" alt="Ordinateur" style="width:100%; height:auto;">
<?php
$cpt = 0;
foreach($raspberrys as $raspberry)
{
$cpt++;
$ip = $raspberry['ip'];
?>
<table class="table table-striped table-hover table-bordered" style="margin-top:10px;">
<thead class="thead-dark">
<th width="15%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
<th width="85%" colspan="2"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
</thead>
<tbody>
<?php
foreach($capteurs as $capteur)
{
if($capteur['raspberry'] != $ip) { continue; }
?>
<tr>
<?php
if(strcmp($capteur['type'], "Température") == 0)
{
$source = "img/temperature.png";
}
else if(strcmp($capteur['type'], "Distance") == 0)
{
$source = "img/distance.png";
}
?>
<td><img src="<?php echo $source;?>" alt="Capteur" style="width:auto; height:50px;"></td>
<td><p class="tdp"><?php echo $capteur['nom'];?></p></td>
<td><p class="tdp"><?php echo $capteur['unite'];?></p></td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
if($cpt < $nombre)
{
?>
<img src="img/empty.jpg" alt="Ligne" style="width:100%; height:auto;">
<?php
}
}
?>
</div>
</div>