network.php 1.15 KB
<?php
session_start();
include("head.php");
include("header.php");
require_once("accesBase.php");
$capteurs = getSensors();
$raspberrys = getRaspberrys();
?>
<div class="row">
	<div class="col-4 col-md-4 offset-md-4 offset-4">
	<br/>
		<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-network-wired"></i> Le réseau</h1>
		<?php
		foreach($raspberrys as $raspberry)
		{
			$ip = $raspberry['ip'];
			?>
			<table class="table table-striped table-bordered table-hover">
				<thead class="thead-dark">
					<th valign="middle" align="center" width="15%"><img src="img/pi.png" alt="Raspberry" style="width:auto; height:50px;"></th>
					<th valign="middle" align="center" width="85%"><p style="font-size: 14px;"><?php echo $ip;?></p></th>
				</thead>
				<tbody>
					<tr>
						<td><label for="start">Date de début :</label></td>
						<td>ok</td>
					</tr>

					<tr>
						<td><label for="end">Date de fin :</label></td>
						<td>ok</td>
					</tr>

					<tr>
						<td><label for"nombre">Nombre de points :</label></td>
						<td>ok</td>
					</tr>
				</tbody>
			</table>
			<?php
		}
		?>
	</div>
</div>