diff --git a/admin/machine.php b/admin/machine.php index 15c5adc..1584efb 100644 --- a/admin/machine.php +++ b/admin/machine.php @@ -1,3 +1,104 @@ \ No newline at end of file +$host = $_GET['id']; + +// si le script est appelé sans paramètre, on revient à la page précédente +if ($host == "" ) { + $precedent = $_SERVER["HTTP_REFERER"]; + header("Location: $precedent"); + exit; +} +$host_json = json_encode(array($host)); + +$machines = Machines(); +$machine = $machines[$host]; +$salle = $machine[0]; +$os = $machine[1]; +$os_sp = $machine[2]; +$os_version = $machine[3]; +$adresse_ip = $machine[4]; +$marque = $machine[5]; +$modele = $machine[6]; +$arch = $machine[7]; +$mac_addr = $machine[8]; +$mac_descr = $machine[9]; +?> + + + + Winlog + + + + +

Machine ()    [retour]

+

Marque :
+ Modèle :
+ Architecture :

+ +

OS :
+ sp :
+ version

+ +

Interface réseau :
+ adresse MAC :
+ adresse IP :

+ +
+ + + + +
+
+

Liste des processus de la machine :

+
+ + + \ No newline at end of file