Blame view

site/network.php 1.67 KB
a3b3b0f7   grouille   Test
1
  <?php
7737ac64   grouille   Suppression RPI +...
2
3
  require_once("accesBase.php");
  $capteurs = getSensors();
dc1068d9   grouille   Affichage du réseau
4
  $raspberrys = getRaspberrys();
57e3933c   grouille   Affichage du réseau
5
  $nombre = count($raspberrys);
a3b3b0f7   grouille   Test
6
  ?>
1d132344   grouille   Test
7
  <div class="row">
ec752829   grouille   Affichage du réseau
8
  	<div class="col-6 col-md-6 offset-md-3 offset-3">
373ca6d8   grouille   Test
9
  	<br/>
eae10824   grouille   Affichage du réseau
10
  		<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>
dfeb0498   grouille   Affichage du réseau
11
  		<img src="img/computer.jpg" alt="Ordinateur" style="width:100%; height:auto;">
dc1068d9   grouille   Affichage du réseau
12
  		<?php
57e3933c   grouille   Affichage du réseau
13
  		$cpt = 0;
dc1068d9   grouille   Affichage du réseau
14
15
  		foreach($raspberrys as $raspberry)
  		{
57e3933c   grouille   Affichage du réseau
16
  			$cpt++;
dc1068d9   grouille   Affichage du réseau
17
18
  			$ip = $raspberry['ip'];
  			?>
dbccab4e   grouille   Affichage du réseau
19
  			<table class="table table-striped table-hover table-bordered" style="margin-top:10px;">
dc1068d9   grouille   Affichage du réseau
20
  				<thead class="thead-dark">
d1b5be5e   grouille   Affichage du réseau
21
  					<th width="15%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
b7631bd6   grouille   Affichage du réseau
22
  					<th width="85%" colspan="2"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
dc1068d9   grouille   Affichage du réseau
23
24
  				</thead>
  				<tbody>
23bc4cb1   grouille   Affichage du réseau
25
26
27
28
29
30
31
  					<?php
  					foreach($capteurs as $capteur)
  					{
  						if($capteur['raspberry'] != $ip) { continue; }
  						?>
  						<tr>
  							<?php
4ed0f35a   grouille   Affichage du réseau
32
  							if(strcmp($capteur['type'], "Température") == 0)
23bc4cb1   grouille   Affichage du réseau
33
34
35
  							{
  								$source = "img/temperature.png";
  							}
4ed0f35a   grouille   Affichage du réseau
36
  							else if(strcmp($capteur['type'], "Distance") == 0)
23bc4cb1   grouille   Affichage du réseau
37
  							{
2c688df7   grouille   Affichage du réseau
38
  								$source = "img/distance.png";
23bc4cb1   grouille   Affichage du réseau
39
40
  							}
  							?>
cfadb181   grouille   Affichage du réseau
41
  							<td><img src="<?php echo $source;?>" alt="Capteur" style="width:auto; height:50px;"></td>
2c52fd1d   grouille   Affichage du réseau
42
  							<td><p class="tdp"><?php echo $capteur['nom'];?></p></td>
d317d7fc   grouille   Affichage du réseau
43
  							<td><p class="tdp"><?php echo $capteur['unite'];?></p></td>
23bc4cb1   grouille   Affichage du réseau
44
45
46
47
  						</tr>
  						<?php
  					}
  					?>
dc1068d9   grouille   Affichage du réseau
48
49
  				</tbody>
  			</table>
dc1068d9   grouille   Affichage du réseau
50
  			<?php
57e3933c   grouille   Affichage du réseau
51
52
53
54
55
56
  			if($cpt < $nombre)
  			{
  				?>
  				<img src="img/empty.jpg" alt="Ligne" style="width:100%; height:auto;">
  			<?php
  			}
dc1068d9   grouille   Affichage du réseau
57
58
  		}
  		?>
7737ac64   grouille   Suppression RPI +...
59
  	</div>
1d132344   grouille   Test
60
  </div>