';
/* Commandes de l'appareil */
echo '
';
echo '
Panel de commande
';
echo '';
//$chemin = getcwd().'/'.$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)){
$sub_dir = array_diff(scandir($path),array('..','.'));
echo '
';
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 '
';
}
}
echo '
';
echo '
';
echo '';
?>