main_oscilloscope.php
1.44 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
<!DOCTYPE html>
<html>
<?php
echo '<div class="d-md-flex flex-md-equal w-100 my-md-3 pl-md-3">';
echo '<div class="mr-md-3 pt-3 px-3 pt-md-5 px-md-5 text-center">';
/* Affichage image */
include('./Scripts/creation_img.php');
echo '</div>';
echo '<div class="bg-light mr-md-3 pt-3 px-3 pt-md-5 px-md-5 overflow-hidden">';
/* Commandes de l'appareil */
echo '<div class="my-3 py-3">';
echo '<h2 class="display-6 text-center">Panel de commande</h2>';
echo '</div>';
//$chemin = getcwd().'/'.$Appareil[$i]['type'];
//$files = array_diff(scandir($chemin),array('..','.'));
echo '<div class="d-md-flex flex-md-equal w-100 my-md-3 pl-md-3">';
/* On parcourt l'arborescence pour trouver les fichiers 'form_fichiers.php'
* Ces fichiers affichent les différents boutons correspondant aux commandes de l'appareil */
foreach($files as $dir){
$path = $chemin.'/'.$dir;
if(is_dir($path)){
$sub_dir = array_diff(scandir($path),array('..','.'));
echo '<div class="mr-md-1 pt-1 px-1 pt-md-1 px-md-1">';
foreach($sub_dir as $new_dir){
$path2 = $path.'/'.$new_dir;
if(is_dir($path2)){
$fichiers = array_diff(scandir($path2),array('..','.'));
foreach($fichiers as $form){
$path3 = $path2.'/'.$form;
if(is_file($path3) && strpos($path3,"form")!=false){
include($path3);
}
}
}
}
echo '</div>';
}
}
echo '</div>';
echo '</div>';
echo '</div>';
?>
</html>