19ae2416
jnduwamu
MAJ du site
|
1
2
3
|
<div class="row">
<div class="col-6 col-md-6 offset-md-3 offset-3">
<br/>
|
39579493
root
MAJ Site
|
4
|
<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-database"></i> Valeurs des capteurs</h1>
|
b284256b
grouille
MAJ
|
5
6
|
<table class="table table-striped table-bordered">
<tbody>
|
064570f9
grouille
MAJ
|
7
|
<tr>
|
b284256b
grouille
MAJ
|
8
9
10
11
12
13
|
<td>Nom</td>
<td>Raspberry</td>
<td>Type</td>
<td>Valeur</td>
<td>Unité</td>
<td>Arrêt</td>
|
064570f9
grouille
MAJ
|
14
|
</tr>
|
b284256b
grouille
MAJ
|
15
16
17
18
19
|
<?php
$sensors = getSensors();
foreach($sensors as $sensor){
?>
|
3722a6bb
grouille
MAJ
|
20
|
<tr>
|
b284256b
grouille
MAJ
|
21
22
23
24
25
26
27
|
<td><?php echo $sensor['nom'];?></td>
<td><?php echo $sensor['raspberry'];?></td>
<td><?php echo $sensor['type'];?></td>
<td><?php echo $sensor['value'];?></td>
<td><?php echo $sensor['unite'];?></td>
<td>
<form action="stop.php" method="POST">
|
8d03531f
grouille
MAJ
|
28
29
|
<input type="hidden" name="nom" value="<?php echo $sensor['nom'];?>">
<input type="submit" name="stop" value="Arrêter">
|
b284256b
grouille
MAJ
|
30
31
32
33
34
35
36
37
|
</form>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
|
19ae2416
jnduwamu
MAJ du site
|
38
39
|
</div>
</div>
|