capteurs.php 1.63 KB
<?php 
$sensors = getSensors();
?>

<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="fa fa-bars"></i> Choix du capteur</h1>
		<form action="reception.php" method="post" enctype="multipart/form-data">
			<table class="table table-striped table-bordered">
				<tbody>
					<th class="thead-dark">
						<td>Sélection</td>
						<td>Nom</td>
						<td>Raspberry</td>
						<td>Type</td>
					</th>
					
					<?php
					$count = 0;
					foreach($sensors as $sensor){
						$count = $count +1;
						?>
						<tr>
							<td><div class="form-check"><input class="form-check-input position-static" type="checkbox" name="sensor[<?php echo $count;?>]" id="sensor1" value="<?php echo $sensor['raspberry'].":".$sensor['numero'].":".$sensor['type'];?>" aria-label="..."></div>
							<td><?php echo $sensor['nom'];?></td>
							<td><?php echo $sensor['raspberry'];?></td>
							<td><?php echo $sensor['type'];?></td>
						</tr>
						<?php
					}
					?>
					
				</tbody>
			</table>
			
			<h1 style="margin-bottom:20px; margin-top:30px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fa fa-file-upload"></i> Uploader un fichier</h1>
		      	<div class="panel panel-default">
			
				<div class="form-group">
				    	<label for="fichier">Charger un fichier</label>
				    	<input type="file" name="fichier" class="form-control-file" id="fichier" required>
				</div>
			
			</div>
			<input type="submit" class="btn btn-dark btn-lg btn-block"style="margin-top:20px;" value="Envoyer"/>
			<br/>
		</form>
	</div>
</div>