'; echo '
'; /* Affichage image */ include('./Scripts/creation_img.php'); echo '
'; echo '
'; /* Affichage des commandes de l'appareil */ echo '
'; echo '

Panel de commande

'; echo '
'; //$chemin = $Appareil[$i]['type']; //$files = array_diff(scandir($chemin),array('..','.')); echo '
'; /* 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)){ $subdir = array_diff(scandir($path),array('..','.')); if($dir!="Menus"){ echo '
'; } foreach($subdir 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); } } } } if($dir!="Menus"){ echo '
'; } } } echo '
'; echo '
'; echo ''; ?>